]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/configure.in
* include/dwarf2-signal.h: Temporarily back out last change.
[thirdparty/gcc.git] / libiberty / configure.in
CommitLineData
3affd5f0 1dnl Process this file with autoconf to produce a configure script
6599da04 2
4ac3cb83 3AC_PREREQ(2.13)
3affd5f0 4AC_INIT(pexecute.c)
6599da04 5
3affd5f0
JL
6dnl We use these options to decide which functions to include.
7AC_ARG_WITH(target-subdir,
ca6b370d
JL
8[ --with-target-subdir=SUBDIR Configuring in a subdirectory])
9AC_ARG_WITH(cross-host,
10[ --with-cross-host=HOST Configuring with a cross compiler])
3affd5f0
JL
11AC_ARG_WITH(newlib,
12[ --with-newlib Configuring with newlib])
6599da04 13
3affd5f0
JL
14if test "${srcdir}" = "."; then
15 if test -z "${with_target_subdir}"; then
16 libiberty_topdir="${srcdir}/.."
17 else
18 if test "${with_target_subdir}" != "."; then
19 libiberty_topdir="${srcdir}/${with_multisrctop}../.."
20 else
21 libiberty_topdir="${srcdir}/${with_multisrctop}.."
22 fi
23 fi
24else
25 libiberty_topdir="${srcdir}/.."
26fi
27AC_CONFIG_AUX_DIR($libiberty_topdir)
28
aaa5f039
DD
29dnl Very limited version of automake's enable-maintainer-mode
30
31AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
32 dnl maintainer-mode is disabled by default
33 AC_ARG_ENABLE(maintainer-mode,
34[ --enable-maintainer-mode
35 enable make rules and dependencies not useful
36 (and sometimes confusing) to the casual installer],
37 maintainer_mode=$enableval,
38 maintainer_mode=no)
39
40AC_MSG_RESULT($maintainer_mode)
41
42if test "$maintainer_mode" = "yes"; then
43 MAINT=''
44 NOTMAINT='#'
45else
46 MAINT='#'
47 NOTMAINT=''
48fi
49AC_SUBST(MAINT)dnl
50AC_SUBST(NOTMAINT)dnl
51
ae9092da
DD
52# Do we have a single-tree copy of texinfo? Even if we do, we can't
53# rely on it - libiberty is built before texinfo.
54AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
f749bd83
AM
55if test "x$MAKEINFO" = "x"; then
56 MAKEINFO="@echo makeinfo missing; true"
ae9092da 57 BUILD_INFO=
f749bd83
AM
58else
59 BUILD_INFO=info
60 case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in
61 x*\ [[1-3]].* )
62 MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required; true"
63 BUILD_INFO=
64 AC_MSG_WARN([
ae9092da 65*** Makeinfo is too old. Info documentation will not be built.])
f749bd83
AM
66 ;;
67 esac
68fi
ae9092da 69AC_SUBST(MAKEINFO)
aaa5f039
DD
70AC_SUBST(BUILD_INFO)
71
72AC_CHECK_PROG(PERL, perl, perl, )
73if test x"$PERL" = x""; then
74 HAVE_PERL='#'
75else
76 HAVE_PERL=''
77fi
78AC_SUBST(HAVE_PERL)
79
3affd5f0
JL
80AC_CANONICAL_HOST
81
82dnl When we start using automake:
83dnl AM_INIT_AUTOMAKE(libiberty, 1.0)
84
85dnl These must be called before AM_PROG_LIBTOOL, because it may want
86dnl to call AC_CHECK_PROG.
87AC_CHECK_TOOL(AR, ar)
88AC_CHECK_TOOL(RANLIB, ranlib, :)
89
3affd5f0
JL
90LIB_AC_PROG_CC
91
92AC_ISC_POSIX
d1209685
ZW
93AC_C_CONST
94AC_C_INLINE
3affd5f0
JL
95
96dnl When we start using libtool:
97dnl Default to a non shared library. This may be overridden by the
98dnl configure option --enable-shared.
99dnl AM_DISABLE_SHARED
100
101dnl When we start using libtool:
102dnl AM_PROG_LIBTOOL
103
104dnl When we start using automake:
105dnl AM_CONFIG_HEADER(config.h:config.in)
106AC_CONFIG_HEADER(config.h:config.in)
107
108dnl When we start using automake:
109dnl AM_MAINTAINER_MODE
dd8f3ed5 110dnl AC_EXEEXT
3affd5f0
JL
111
112dnl When we start using automake:
113dnl AM_PROG_INSTALL
114AC_PROG_INSTALL
6599da04
JM
115
116. ${srcdir}/config.table
117host_makefile_frag=${frag}
3affd5f0
JL
118AC_SUBST_FILE(host_makefile_frag)
119
120# It's OK to check for header files. Although the compiler may not be
121# able to link anything, it had better be able to at least compile
122# something.
c3bb7df0 123AC_CHECK_HEADERS(sys/file.h sys/param.h limits.h stdlib.h string.h unistd.h strings.h sys/time.h time.h sys/resource.h sys/stat.h sys/mman.h fcntl.h alloca.h)
a6458d1d 124AC_HEADER_SYS_WAIT
c6451ce1 125AC_HEADER_TIME
6599da04 126
3b58c099
MS
127libiberty_AC_DECLARE_ERRNO
128
fdfc290b 129AC_CHECK_TYPE(uintptr_t, unsigned long)
d3982b71 130
fdfc290b 131if test $ac_cv_type_uintptr_t = yes
d3982b71 132then
e490616e 133 AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if you have the \`uintptr_t' type.])
d3982b71
JL
134fi
135
3affd5f0
JL
136# This is the list of functions which libiberty will provide if they
137# are not available on the host.
138
139funcs="asprintf"
140funcs="$funcs atexit"
141funcs="$funcs basename"
142funcs="$funcs bcmp"
143funcs="$funcs bcopy"
dac45916 144funcs="$funcs bsearch"
3affd5f0 145funcs="$funcs bzero"
a9acf741 146funcs="$funcs calloc"
3affd5f0 147funcs="$funcs clock"
29650b2b 148funcs="$funcs ffs"
3affd5f0
JL
149funcs="$funcs getcwd"
150funcs="$funcs getpagesize"
151funcs="$funcs index"
152funcs="$funcs insque"
153funcs="$funcs memchr"
154funcs="$funcs memcmp"
155funcs="$funcs memcpy"
156funcs="$funcs memmove"
157funcs="$funcs memset"
687361c8 158funcs="$funcs mkstemps"
9eb4080f 159funcs="$funcs putenv"
3affd5f0
JL
160funcs="$funcs random"
161funcs="$funcs rename"
162funcs="$funcs rindex"
9eb4080f 163funcs="$funcs setenv"
3affd5f0
JL
164funcs="$funcs sigsetmask"
165funcs="$funcs strcasecmp"
166funcs="$funcs strchr"
167funcs="$funcs strdup"
168funcs="$funcs strncasecmp"
169funcs="$funcs strrchr"
170funcs="$funcs strstr"
171funcs="$funcs strtod"
172funcs="$funcs strtol"
173funcs="$funcs strtoul"
174funcs="$funcs tmpnam"
175funcs="$funcs vasprintf"
176funcs="$funcs vfprintf"
177funcs="$funcs vprintf"
178funcs="$funcs vsprintf"
179funcs="$funcs waitpid"
180
181# Also in the old function.def file: alloca, vfork, getopt.
182
183vars="sys_errlist sys_nerr sys_siglist"
184
90e72e20 185checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
3affd5f0
JL
186
187# These are neither executed nor required, but they help keep
188# autoheader happy without adding a bunch of text to acconfig.h.
189if test "x" = "y"; then
dac45916
MS
190 AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock)
191 AC_CHECK_FUNCS(getcwd getpagesize index insque mkstemps memchr memcmp memcpy)
192 AC_CHECK_FUNCS(memmove memset putenv random rename rindex sigsetmask)
193 AC_CHECK_FUNCS(strcasecmp setenv strchr strdup strncasecmp strrchr strstr)
194 AC_CHECK_FUNCS(strtod strtol strtoul tmpnam vasprintf vfprintf vprintf)
195 AC_CHECK_FUNCS(vsprintf waitpid getrusage on_exit psignal strerror strsignal)
29650b2b 196 AC_CHECK_FUNCS(sysconf times sbrk gettimeofday ffs)
d1209685
ZW
197 AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
198 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if you have the sys_nerr variable.])
199 AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.])
6599da04
JM
200fi
201
3affd5f0
JL
202# For each of these functions, if the host does not provide the
203# function we want to put FN.o in LIBOBJS, and if the host does
b548dffb 204# provide the function, we want to define HAVE_FN in config.h.
3affd5f0
JL
205
206setobjs=
7c72138a 207CHECK=
48d7db63 208target_header_dir=
3affd5f0
JL
209if test -n "${with_target_subdir}"; then
210
ca6b370d 211 # We are being configured as a target library. AC_REPLACE_FUNCS
3affd5f0 212 # may not work correctly, because the compiler may not be able to
ca6b370d
JL
213 # link executables. Note that we may still be being configured
214 # native.
3affd5f0
JL
215
216 # If we are being configured for newlib, we know which functions
217 # newlib provide and which ones we will be expected to provide.
218
219 if test "x${with_newlib}" = "xyes"; then
ca6b370d 220 LIBOBJS="asprintf.o basename.o insque.o random.o strdup.o vasprintf.o"
3affd5f0
JL
221
222 for f in $funcs; do
223 case "$f" in
ca6b370d 224 asprintf | basename | insque | random | strdup | vasprintf)
3affd5f0
JL
225 ;;
226 *)
227 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
228 AC_DEFINE_UNQUOTED($n)
229 ;;
230 esac
231 done
232
233 # newlib doesnt provide any of the variables in $vars, so we
234 # dont have to check them here.
235
ca6b370d 236 # Of the functions in $checkfuncs, newlib only has strerror.
d1209685 237 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
3affd5f0
JL
238
239 setobjs=yes
240
241 fi
7c72138a 242
48d7db63
PE
243 # We may wish to install the target headers somewhere.
244 AC_ARG_ENABLE(install-libiberty,
245 [ --enable-install-libiberty Install headers for end users],
246 enable_install_libiberty=$enableval,
247 enable_install_libiberty=no)dnl
248
249 # Option parsed, now set things appropriately.
250 case x"$enable_install_libiberty" in
251 xyes|x)
252 target_header_dir=libiberty
253 ;;
254 xno)
255 target_header_dir=
256 ;;
257 *)
258 # This could be sanity-checked in various ways...
259 target_header_dir="${enable_install_libiberty}"
260 ;;
261 esac
262
263
7c72138a
TT
264else
265
266 # Not a target library, so we set things up to run the test suite.
267 CHECK=check-cplus-dem
268
3affd5f0
JL
269fi
270
7c72138a 271AC_SUBST(CHECK)
48d7db63 272AC_SUBST(target_header_dir)
7c72138a 273
b1c45ae4 274case "${host}" in
46af757b 275 *-*-cygwin* | *-*-mingw*)
e490616e
ZW
276 AC_DEFINE_NOAUTOHEADER(HAVE_SYS_ERRLIST)
277 AC_DEFINE_NOAUTOHEADER(HAVE_SYS_NERR)
b1c45ae4
CF
278 ;;
279esac
280
3affd5f0
JL
281if test -z "${setobjs}"; then
282 case "${host}" in
283
284 *-*-vxworks*)
285 # Handle VxWorks configuration specially, since on VxWorks the
286 # libraries are actually on the target board, not in the file
287 # system.
288 LIBOBJS="basename.o getpagesize.o insque.o random.o strcasecmp.o"
289 LIBOBJS="$LIBOBJS strncasecmp.o strdup.o vfork.o waitpid.o vasprintf.o"
290 for f in $funcs; do
291 case "$f" in
292 basename | getpagesize | insque | random | strcasecmp)
293 ;;
294 strncasecmp | strdup | vfork | waitpid | vasprintf)
295 ;;
296 *)
297 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
298 AC_DEFINE_UNQUOTED($n)
299 ;;
300 esac
301 done
302
303 # VxWorks doesn't provide any of the variables in $vars, so we
304 # don't have to check them here.
305
306 # Of the functions in $checkfuncs, VxWorks only has strerror.
d1209685 307 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
3affd5f0
JL
308
309 setobjs=yes
310 ;;
311
312 esac
313fi
314
315if test -z "${setobjs}"; then
316
317 case "${host}" in
318
dd8f3ed5
GN
319 *-*-cygwin*)
320 # The Cygwin library actually uses a couple of files from
3affd5f0 321 # libiberty when it is built. If we are building a native
dd8f3ed5 322 # Cygwin, and we run the tests, we will appear to have these
3affd5f0
JL
323 # files. However, when we go on to build winsup, we will wind up
324 # with a library which does not have the files, since they should
325 # have come from libiberty.
326
327 # We handle this by removing the functions the winsup library
328 # provides from our shell variables, so that they appear to be
329 # missing.
330
2f31ed7e
DD
331 # DJ - only if we're *building* cygwin, not just building *with* cygwin
332
333 if test -n "${with_target_subdir}"
334 then
335 funcs="`echo $funcs | sed -e 's/random//'`"
336 LIBOBJS="$LIBOBJS random.o"
337 vars="`echo $vars | sed -e 's/sys_siglist//'`"
338 checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`"
339 fi
3affd5f0
JL
340 ;;
341
342 *-*-mingw32*)
343 # Under mingw32, sys_nerr and sys_errlist exist, but they are
344 # macros, so the test below won't find them.
d1209685
ZW
345 libiberty_cv_var_sys_nerr=yes
346 libiberty_cv_var_sys_errlist=yes
3affd5f0
JL
347 ;;
348
89f602a7
MK
349 *-*-uwin*)
350 # Under some versions of uwin, vfork is notoriously buggy and the test
351 # can hang configure; on other versions, vfork exists just as a stub.
352 # FIXME: This should be removed once vfork in uwin's runtime is fixed.
353 ac_cv_func_vfork_works=no
62133b5e
MK
354 # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are
355 # macros (actually, these are imported from a DLL, but the end effect
356 # is the same), so the test below won't find them.
d1209685
ZW
357 libiberty_cv_var_sys_nerr=yes
358 libiberty_cv_var_sys_errlist=yes
89f602a7
MK
359 ;;
360
ee262b6f
DR
361 *-*-*vms*)
362 # Under VMS, vfork works very different than on Unix. The standard test
363 # won't work, and it isn't easily adaptable. It makes more sense to
364 # just force it.
365 ac_cv_func_vfork_works=yes
366 ;;
367
3affd5f0
JL
368 esac
369
370 # We haven't set the list of objects yet. Use the standard autoconf
371 # tests. This will only work if the compiler works.
372 AC_PROG_CC_WORKS
373 AC_REPLACE_FUNCS($funcs)
b548dffb 374 libiberty_AC_FUNC_C_ALLOCA
3affd5f0
JL
375 AC_FUNC_VFORK
376 if test $ac_cv_func_vfork_works = no; then
377 LIBOBJS="$LIBOBJS vfork.o"
378 fi
e490616e
ZW
379 # We only need _doprnt if we might use it to implement v*printf.
380 if test $ac_cv_func_vprintf != yes \
381 || test $ac_cv_func_vfprintf != yes \
382 || test $ac_cv_func_vsprintf != yes; then
383 AC_REPLACE_FUNCS(_doprnt)
9ce3f7e5
DD
384 else
385 AC_CHECK_FUNCS(_doprnt)
e490616e
ZW
386 fi
387
3affd5f0
JL
388 for v in $vars; do
389 AC_MSG_CHECKING([for $v])
390 AC_CACHE_VAL(libiberty_cv_var_$v,
e64d0626 391 [AC_TRY_LINK([int *p;], [extern int $v []; p = &$v;],
3affd5f0
JL
392 [eval "libiberty_cv_var_$v=yes"],
393 [eval "libiberty_cv_var_$v=no"])])
394 if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
395 AC_MSG_RESULT(yes)
396 n=HAVE_`echo $v | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
397 AC_DEFINE_UNQUOTED($n)
6599da04 398 else
3affd5f0 399 AC_MSG_RESULT(no)
6599da04 400 fi
3affd5f0
JL
401 done
402 AC_CHECK_FUNCS($checkfuncs)
403fi
404
a9266bfa
KG
405libiberty_AC_FUNC_STRNCMP
406
3affd5f0
JL
407# Install a library built with a cross compiler in $(tooldir) rather
408# than $(libdir).
ca6b370d 409if test -z "${with_cross_host}"; then
3affd5f0
JL
410 INSTALL_DEST=libdir
411else
412 INSTALL_DEST=tooldir
6599da04 413fi
3affd5f0
JL
414AC_SUBST(INSTALL_DEST)
415
416# We need multilib support, but only if configuring for the target.
7c72138a 417AC_OUTPUT(Makefile testsuite/Makefile,
3affd5f0
JL
418[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
419if test -n "$CONFIG_FILES"; then
420 if test -n "${with_target_subdir}"; then
421 # FIXME: We shouldn't need to set ac_file
422 ac_file=Makefile
423 . ${libiberty_topdir}/config-ml.in
424 fi
425fi],
426srcdir=${srcdir}
427host=${host}
428target=${target}
429with_target_subdir=${with_target_subdir}
430with_multisubdir=${with_multisubdir}
431ac_configure_args="--enable-multilib ${ac_configure_args}"
432CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
433libiberty_topdir=${libiberty_topdir}
434)