]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/configure.ac
... Add warning control to warning call.
[thirdparty/gcc.git] / libiberty / configure.ac
CommitLineData
3c67ba63 1dnl Process this file with autoconf to produce a configure script
28e9041c 2
7f759422 3AC_PREREQ(2.59)
4AC_INIT
5AC_CONFIG_SRCDIR([xmalloc.c])
28e9041c 6
0b045cf7 7# This works around the fact that libtool configuration may change LD
8# for this particular configuration, but some shells, instead of
9# keeping the changes in LD private, export them just because LD is
10# exported. We don't use libtool yet, but some day we might, so...
11ORIGINAL_LD_FOR_MULTILIBS=$LD
12
3c67ba63 13dnl We use these options to decide which functions to include.
14AC_ARG_WITH(target-subdir,
60d10194 15[ --with-target-subdir=SUBDIR Configuring in a subdirectory for target])
16AC_ARG_WITH(build-subdir,
17[ --with-build-subdir=SUBDIR Configuring in a subdirectory for build])
804ec1bf 18AC_ARG_WITH(cross-host,
19[ --with-cross-host=HOST Configuring with a cross compiler])
3c67ba63 20AC_ARG_WITH(newlib,
21[ --with-newlib Configuring with newlib])
28e9041c 22
3c67ba63 23if test "${srcdir}" = "."; then
60d10194 24 if test -n "${with_build_subdir}"; then
25 libiberty_topdir="${srcdir}/../.."
26 with_target_subdir=
27 elif test -z "${with_target_subdir}"; then
3c67ba63 28 libiberty_topdir="${srcdir}/.."
29 else
30 if test "${with_target_subdir}" != "."; then
31 libiberty_topdir="${srcdir}/${with_multisrctop}../.."
32 else
33 libiberty_topdir="${srcdir}/${with_multisrctop}.."
34 fi
35 fi
36else
37 libiberty_topdir="${srcdir}/.."
38fi
7f13318a 39AC_SUBST(libiberty_topdir)
3c67ba63 40AC_CONFIG_AUX_DIR($libiberty_topdir)
41
614a23c6 42dnl Very limited version of automake's enable-maintainer-mode
43
44AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
45 dnl maintainer-mode is disabled by default
46 AC_ARG_ENABLE(maintainer-mode,
47[ --enable-maintainer-mode
48 enable make rules and dependencies not useful
49 (and sometimes confusing) to the casual installer],
50 maintainer_mode=$enableval,
51 maintainer_mode=no)
52
53AC_MSG_RESULT($maintainer_mode)
54
55if test "$maintainer_mode" = "yes"; then
56 MAINT=''
57 NOTMAINT='#'
58else
59 MAINT='#'
60 NOTMAINT=''
61fi
62AC_SUBST(MAINT)dnl
63AC_SUBST(NOTMAINT)dnl
64
eb765d0c 65# Do we have a single-tree copy of texinfo? Even if we do, we can't
66# rely on it - libiberty is built before texinfo.
67AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
7c9e70dd 68if test "x$MAKEINFO" = "x"; then
69 MAKEINFO="@echo makeinfo missing; true"
eb765d0c 70 BUILD_INFO=
7c9e70dd 71else
72 BUILD_INFO=info
40a84a93 73 case "$MAKEINFO" in
74 */missing\ makeinfo*)
7c9e70dd 75 BUILD_INFO=
76 AC_MSG_WARN([
40a84a93 77*** Makeinfo is missing. Info documentation will not be built.])
78 ;;
79 *)
80 case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in
81 x*\ [[1-3]].* )
82 MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required; true"
83 BUILD_INFO=
84 AC_MSG_WARN([
eb765d0c 85*** Makeinfo is too old. Info documentation will not be built.])
40a84a93 86 ;;
87 esac
7c9e70dd 88 ;;
89 esac
90fi
eb765d0c 91AC_SUBST(MAKEINFO)
614a23c6 92AC_SUBST(BUILD_INFO)
93
94AC_CHECK_PROG(PERL, perl, perl, )
95if test x"$PERL" = x""; then
96 HAVE_PERL='#'
97else
98 HAVE_PERL=''
99fi
100AC_SUBST(HAVE_PERL)
101
3c67ba63 102AC_CANONICAL_HOST
103
104dnl When we start using automake:
105dnl AM_INIT_AUTOMAKE(libiberty, 1.0)
106
107dnl These must be called before AM_PROG_LIBTOOL, because it may want
108dnl to call AC_CHECK_PROG.
109AC_CHECK_TOOL(AR, ar)
110AC_CHECK_TOOL(RANLIB, ranlib, :)
111
a6089b1e 112GCC_NO_EXECUTABLES
113AC_PROG_CC
90305aaf 114AC_PROG_CPP_WERROR
a6089b1e 115
116if test x$GCC = xyes; then
8e1547da 117 ac_libiberty_warn_cflags='-W -Wall -pedantic -Wwrite-strings -Wstrict-prototypes'
a6089b1e 118fi
119AC_SUBST(ac_libiberty_warn_cflags)
3c67ba63 120
a1ba1d98 121AC_PROG_CC_C_O
122# autoconf is lame and doesn't give us any substitution variable for this.
123if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
124 NO_MINUS_C_MINUS_O=yes
125else
126 OUTPUT_OPTION='-o $@'
127fi
128AC_SUBST(NO_MINUS_C_MINUS_O)
129AC_SUBST(OUTPUT_OPTION)
130
ec255163 131AC_C_CONST
132AC_C_INLINE
1aa028ef 133AC_C_BIGENDIAN
3c67ba63 134
a1ba1d98 135dnl When we start using libtool:
3c67ba63 136dnl Default to a non shared library. This may be overridden by the
137dnl configure option --enable-shared.
a1ba1d98 138dnl AM_DISABLE_SHARED
3c67ba63 139
a1ba1d98 140dnl When we start using libtool:
141dnl AM_PROG_LIBTOOL
3c67ba63 142
143dnl When we start using automake:
144dnl AM_CONFIG_HEADER(config.h:config.in)
145AC_CONFIG_HEADER(config.h:config.in)
146
147dnl When we start using automake:
148dnl AM_MAINTAINER_MODE
7b8b8d43 149dnl AC_EXEEXT
3c67ba63 150
151dnl When we start using automake:
152dnl AM_PROG_INSTALL
153AC_PROG_INSTALL
28e9041c 154
e744e148 155# Don't build the shared library for build.
156if [[ -n "${with_build_subdir}" ]]; then
157 enable_shared=no
158fi
159
160frag=
161case "${host}" in
162 rs6000-ibm-aix3.1 | rs6000-ibm-aix)
163 frag=mh-aix ;;
164 *-*-cxux7*) frag=mh-cxux7 ;;
165 *-*-freebsd2.1.*) frag=mh-fbsd21 ;;
166 *-*-freebsd2.2.[[012]]) frag=mh-fbsd21 ;;
167 i370-*-opened*) frag=mh-openedition ;;
168 i[[34567]]86-*-windows*) frag=mh-windows ;;
169esac
170
171if [[ -n "${frag}" ]]; then
172 frags=${libiberty_topdir}/libiberty/config/$frag
173else
174 frags=
175fi
176
177# If they didn't specify --enable-shared, don't generate shared libs.
178case "${enable_shared}" in
179 yes) shared=yes ;;
180 no) shared=no ;;
181 "") shared=no ;;
182 *) shared=yes ;;
183esac
184if [[ "${shared}" = "yes" ]]; then
185 frag=
186 case "${host}" in
187 *-*-cygwin*) ;;
188 alpha*-*-linux*) frag=mh-elfalphapic ;;
189 arm*-*-*) frag=mh-armpic ;;
190 hppa*-*-*) frag=mh-papic ;;
191 i[[34567]]86-*-* | x86_64-*-*)
192 frag=mh-x86pic ;;
193 powerpc*-*-aix*) ;;
194 powerpc*-*-*) frag=mh-ppcpic ;;
195 sparc*-*-*) frag=mh-sparcpic ;;
196 s390*-*-*) frag=mh-s390pic ;;
197 *) frag=mh-${host_cpu}pic ;;
198 esac
199 if [[ -n "${frag}" ]]; then
200 frags="${frags} ${libiberty_topdir}/config/${frag}"
201 fi
202fi
203
204echo "# Warning: this fragment is automatically generated" > temp-frag
205
206for frag in ${frags}; do
207 if [[ -f ${frag} ]]; then
208 echo "Appending ${frag} to xhost-mkfrag"
209 echo "# Following fragment copied from ${frag}" >> temp-frag
210 cat ${frag} >> temp-frag
211 fi
212done
213
214# record if we want to build shared libs.
215if [[ "${shared}" = "yes" ]]; then
216 echo enable_shared = yes >> temp-frag
217else
218 echo enable_shared = no >> temp-frag
219fi
220
221frag=xhost-mkfrag
222${CONFIG_SHELL-/bin/sh} ${libiberty_topdir}/move-if-change temp-frag xhost-mkfrag
223
28e9041c 224host_makefile_frag=${frag}
3c67ba63 225AC_SUBST_FILE(host_makefile_frag)
226
227# It's OK to check for header files. Although the compiler may not be
228# able to link anything, it had better be able to at least compile
229# something.
35f4c956 230AC_CHECK_HEADERS(sys/file.h sys/param.h limits.h stdlib.h malloc.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 sys/pstat.h sys/sysmp.h sys/sysinfo.h machine/hal_sysinfo.h sys/table.h sys/sysctl.h sys/systemcfg.h stdint.h stdio_ext.h)
1ed7db2f 231AC_HEADER_SYS_WAIT
1a163ca8 232AC_HEADER_TIME
28e9041c 233
fb758229 234libiberty_AC_DECLARE_ERRNO
235
4927c18d 236# Determine the size of an int for struct fibnode.
237AC_CHECK_SIZEOF([int])
238
b6477ce7 239AC_CHECK_TYPE(uintptr_t, unsigned long)
6c13736f 240
241# Look for a 64-bit type.
242AC_MSG_CHECKING([for a 64-bit type])
243AC_CACHE_VAL(liberty_cv_uint64,
244[AC_TRY_COMPILE(
245[#ifdef HAVE_STDINT_H
246#include <stdint.h>
247#endif],
248[extern uint64_t foo;],
249liberty_cv_uint64=uint64_t,
250[AC_TRY_COMPILE(
251[#ifdef HAVE_LIMITS_H
252#include <limits.h>
253#endif
254#ifndef CHAR_BIT
255#define CHAR_BIT 8
256#endif],
257[extern char foo[sizeof(long) * CHAR_BIT >= 64 ? 1 : -1];],
258liberty_cv_uint64="unsigned long",
259[AC_TRY_COMPILE(
260[#ifdef HAVE_LIMITS_H
261#include <limits.h>
262#endif
263#ifndef CHAR_BIT
264#define CHAR_BIT 8
265#endif],
266[extern char foo[sizeof(long long) * CHAR_BIT >= 64 ? 1 : -1];],
267liberty_cv_uint64="unsigned long long", liberty_cv_uint64=none)])])])
268AC_MSG_RESULT($liberty_cv_uint64)
269if test "$liberty_cv_uint64" != none; then
b6b1fbb6 270 AC_DEFINE_UNQUOTED(UNSIGNED_64BIT_TYPE, $liberty_cv_uint64,
271 [Define to an unsigned 64-bit type available in the compiler.])
6c13736f 272fi
273
b5e94eb4 274# Given the above check, we always have uintptr_t or a fallback
275# definition. So define HAVE_UINTPTR_T in case any imported code
276# relies on it.
277AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if you have the \`uintptr_t' type.])
7b190504 278
63e428d5 279AC_TYPE_PID_T
280
3c67ba63 281# This is the list of functions which libiberty will provide if they
282# are not available on the host.
283
284funcs="asprintf"
285funcs="$funcs atexit"
286funcs="$funcs basename"
287funcs="$funcs bcmp"
288funcs="$funcs bcopy"
5b9c32cc 289funcs="$funcs bsearch"
3c67ba63 290funcs="$funcs bzero"
34fa8831 291funcs="$funcs calloc"
3c67ba63 292funcs="$funcs clock"
8568af22 293funcs="$funcs ffs"
3c67ba63 294funcs="$funcs getcwd"
295funcs="$funcs getpagesize"
5a24a79a 296funcs="$funcs gettimeofday"
3c67ba63 297funcs="$funcs index"
298funcs="$funcs insque"
299funcs="$funcs memchr"
300funcs="$funcs memcmp"
301funcs="$funcs memcpy"
302funcs="$funcs memmove"
79d940a3 303funcs="$funcs mempcpy"
3c67ba63 304funcs="$funcs memset"
301e59c9 305funcs="$funcs mkstemps"
ad3893f9 306funcs="$funcs putenv"
3c67ba63 307funcs="$funcs random"
308funcs="$funcs rename"
309funcs="$funcs rindex"
ad3893f9 310funcs="$funcs setenv"
09fd37ef 311funcs="$funcs snprintf"
3c67ba63 312funcs="$funcs sigsetmask"
79d940a3 313funcs="$funcs stpcpy"
314funcs="$funcs stpncpy"
3c67ba63 315funcs="$funcs strcasecmp"
316funcs="$funcs strchr"
317funcs="$funcs strdup"
318funcs="$funcs strncasecmp"
a2ef32b0 319funcs="$funcs strndup"
3c67ba63 320funcs="$funcs strrchr"
321funcs="$funcs strstr"
322funcs="$funcs strtod"
323funcs="$funcs strtol"
324funcs="$funcs strtoul"
28cc9eac 325funcs="$funcs strverscmp"
3c67ba63 326funcs="$funcs tmpnam"
327funcs="$funcs vasprintf"
328funcs="$funcs vfprintf"
329funcs="$funcs vprintf"
09fd37ef 330funcs="$funcs vsnprintf"
3c67ba63 331funcs="$funcs vsprintf"
332funcs="$funcs waitpid"
333
334# Also in the old function.def file: alloca, vfork, getopt.
335
5e90539e 336vars="sys_errlist sys_nerr sys_siglist"
3c67ba63 337
18912799 338checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
8f3b8386 339checkfuncs="$checkfuncs realpath canonicalize_file_name pstat_getstatic pstat_getdynamic sysmp"
35f4c956 340checkfuncs="$checkfuncs getsysinfo table sysctl wait3 wait4 __fsetlocking"
3c67ba63 341
342# These are neither executed nor required, but they help keep
343# autoheader happy without adding a bunch of text to acconfig.h.
344if test "x" = "y"; then
9bb0a517 345 AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock \
5a24a79a 346 getcwd getpagesize gettimeofday index insque mkstemps memchr memcmp memcpy \
9bb0a517 347 memmove mempcpy memset putenv random rename rindex sigsetmask \
a2ef32b0 348 strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strndup strrchr strstr \
28cc9eac 349 strtod strtol strtoul strverscmp tmpnam vasprintf vfprintf vprintf \
9bb0a517 350 vsprintf waitpid getrusage on_exit psignal strerror strsignal \
351 sysconf times sbrk gettimeofday ffs snprintf vsnprintf \
22683dca 352 pstat_getstatic pstat_getdynamic sysmp getsysinfo table sysctl wait3 wait4 \
35f4c956 353 realpath canonicalize_file_name __fsetlocking)
71f27b28 354 AC_CHECK_DECLS([basename, ffs, asprintf, vasprintf, snprintf, vsnprintf])
ec255163 355 AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
356 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if you have the sys_nerr variable.])
357 AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.])
28e9041c 358fi
359
3c67ba63 360# For each of these functions, if the host does not provide the
361# function we want to put FN.o in LIBOBJS, and if the host does
f8d49ce1 362# provide the function, we want to define HAVE_FN in config.h.
3c67ba63 363
364setobjs=
715f424c 365CHECK=
9123512a 366target_header_dir=
3c67ba63 367if test -n "${with_target_subdir}"; then
368
804ec1bf 369 # We are being configured as a target library. AC_REPLACE_FUNCS
3c67ba63 370 # may not work correctly, because the compiler may not be able to
804ec1bf 371 # link executables. Note that we may still be being configured
372 # native.
3c67ba63 373
374 # If we are being configured for newlib, we know which functions
375 # newlib provide and which ones we will be expected to provide.
376
377 if test "x${with_newlib}" = "xyes"; then
a6089b1e 378 AC_LIBOBJ([asprintf])
379 AC_LIBOBJ([basename])
380 AC_LIBOBJ([insque])
381 AC_LIBOBJ([random])
382 AC_LIBOBJ([strdup])
383 AC_LIBOBJ([vasprintf])
3c67ba63 384
385 for f in $funcs; do
386 case "$f" in
804ec1bf 387 asprintf | basename | insque | random | strdup | vasprintf)
3c67ba63 388 ;;
389 *)
390 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
391 AC_DEFINE_UNQUOTED($n)
392 ;;
393 esac
394 done
395
396 # newlib doesnt provide any of the variables in $vars, so we
397 # dont have to check them here.
398
804ec1bf 399 # Of the functions in $checkfuncs, newlib only has strerror.
1fe0ca55 400 AC_DEFINE(HAVE_STRERROR)
3c67ba63 401
402 setobjs=yes
403
404 fi
715f424c 405
9123512a 406 # We may wish to install the target headers somewhere.
407 AC_ARG_ENABLE(install-libiberty,
408 [ --enable-install-libiberty Install headers for end users],
409 enable_install_libiberty=$enableval,
410 enable_install_libiberty=no)dnl
411
412 # Option parsed, now set things appropriately.
413 case x"$enable_install_libiberty" in
414 xyes|x)
415 target_header_dir=libiberty
416 ;;
417 xno)
418 target_header_dir=
419 ;;
420 *)
421 # This could be sanity-checked in various ways...
422 target_header_dir="${enable_install_libiberty}"
423 ;;
424 esac
425
426
715f424c 427else
428
429 # Not a target library, so we set things up to run the test suite.
22683dca 430 CHECK=really-check
715f424c 431
3c67ba63 432fi
433
715f424c 434AC_SUBST(CHECK)
9123512a 435AC_SUBST(target_header_dir)
715f424c 436
3652f680 437case "${host}" in
da383dd4 438 *-*-cygwin* | *-*-mingw*)
1fe0ca55 439 AC_DEFINE(HAVE_SYS_ERRLIST)
440 AC_DEFINE(HAVE_SYS_NERR)
3652f680 441 ;;
442esac
443
3c67ba63 444if test -z "${setobjs}"; then
445 case "${host}" in
446
447 *-*-vxworks*)
448 # Handle VxWorks configuration specially, since on VxWorks the
449 # libraries are actually on the target board, not in the file
450 # system.
a6089b1e 451 AC_LIBOBJ([basename])
452 AC_LIBOBJ([getpagesize])
453 AC_LIBOBJ([insque])
454 AC_LIBOBJ([random])
455 AC_LIBOBJ([strcasecmp])
456 AC_LIBOBJ([strncasecmp])
457 AC_LIBOBJ([strdup])
458 AC_LIBOBJ([vfork])
459 AC_LIBOBJ([waitpid])
460 AC_LIBOBJ([vasprintf])
3c67ba63 461 for f in $funcs; do
462 case "$f" in
463 basename | getpagesize | insque | random | strcasecmp)
464 ;;
465 strncasecmp | strdup | vfork | waitpid | vasprintf)
466 ;;
467 *)
468 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
469 AC_DEFINE_UNQUOTED($n)
470 ;;
471 esac
472 done
473
474 # VxWorks doesn't provide any of the variables in $vars, so we
475 # don't have to check them here.
476
477 # Of the functions in $checkfuncs, VxWorks only has strerror.
1fe0ca55 478 AC_DEFINE(HAVE_STRERROR)
3c67ba63 479
480 setobjs=yes
481 ;;
482
483 esac
484fi
485
486if test -z "${setobjs}"; then
487
488 case "${host}" in
489
7b8b8d43 490 *-*-cygwin*)
491 # The Cygwin library actually uses a couple of files from
3c67ba63 492 # libiberty when it is built. If we are building a native
7b8b8d43 493 # Cygwin, and we run the tests, we will appear to have these
3c67ba63 494 # files. However, when we go on to build winsup, we will wind up
495 # with a library which does not have the files, since they should
496 # have come from libiberty.
497
498 # We handle this by removing the functions the winsup library
499 # provides from our shell variables, so that they appear to be
500 # missing.
501
4aabc076 502 # DJ - only if we're *building* cygwin, not just building *with* cygwin
503
504 if test -n "${with_target_subdir}"
505 then
506 funcs="`echo $funcs | sed -e 's/random//'`"
a6089b1e 507 AC_LIBOBJ([random])
4aabc076 508 vars="`echo $vars | sed -e 's/sys_siglist//'`"
509 checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`"
510 fi
3c67ba63 511 ;;
512
513 *-*-mingw32*)
514 # Under mingw32, sys_nerr and sys_errlist exist, but they are
515 # macros, so the test below won't find them.
ec255163 516 libiberty_cv_var_sys_nerr=yes
517 libiberty_cv_var_sys_errlist=yes
3c67ba63 518 ;;
519
10349537 520 *-*-msdosdjgpp*)
40aad480 521 # vfork and fork are stubs.
522 ac_cv_func_vfork_works=no
523 ;;
524
d267f778 525 *-*-uwin*)
526 # Under some versions of uwin, vfork is notoriously buggy and the test
527 # can hang configure; on other versions, vfork exists just as a stub.
528 # FIXME: This should be removed once vfork in uwin's runtime is fixed.
529 ac_cv_func_vfork_works=no
dbf15cfc 530 # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are
531 # macros (actually, these are imported from a DLL, but the end effect
532 # is the same), so the test below won't find them.
ec255163 533 libiberty_cv_var_sys_nerr=yes
534 libiberty_cv_var_sys_errlist=yes
d267f778 535 ;;
536
8f966bdb 537 *-*-*vms*)
538 # Under VMS, vfork works very different than on Unix. The standard test
539 # won't work, and it isn't easily adaptable. It makes more sense to
540 # just force it.
541 ac_cv_func_vfork_works=yes
542 ;;
543
3c67ba63 544 esac
545
546 # We haven't set the list of objects yet. Use the standard autoconf
547 # tests. This will only work if the compiler works.
a6089b1e 548 AC_ISC_POSIX
3c67ba63 549 AC_REPLACE_FUNCS($funcs)
f8d49ce1 550 libiberty_AC_FUNC_C_ALLOCA
7f759422 551 AC_FUNC_FORK
3c67ba63 552 if test $ac_cv_func_vfork_works = no; then
a6089b1e 553 AC_LIBOBJ([vfork])
3c67ba63 554 fi
31972771 555 # We only need _doprnt if we might use it to implement v*printf.
556 if test $ac_cv_func_vprintf != yes \
557 || test $ac_cv_func_vfprintf != yes \
558 || test $ac_cv_func_vsprintf != yes; then
559 AC_REPLACE_FUNCS(_doprnt)
98b6fc70 560 else
561 AC_CHECK_FUNCS(_doprnt)
31972771 562 fi
563
3c67ba63 564 for v in $vars; do
565 AC_MSG_CHECKING([for $v])
566 AC_CACHE_VAL(libiberty_cv_var_$v,
7f759422 567 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[int *p;]],[[extern int $v []; p = $v;]])],
568 [eval "libiberty_cv_var_$v=yes"],
569 [eval "libiberty_cv_var_$v=no"])])
3c67ba63 570 if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
571 AC_MSG_RESULT(yes)
572 n=HAVE_`echo $v | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
573 AC_DEFINE_UNQUOTED($n)
28e9041c 574 else
3c67ba63 575 AC_MSG_RESULT(no)
28e9041c 576 fi
3c67ba63 577 done
5e90539e 578
579 # special check for _system_configuration because AIX <4.3.2 do not
580 # contain the `physmem' member.
581 AC_MSG_CHECKING([for external symbol _system_configuration])
7f759422 582 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/systemcfg.h>]],
583 [[double x = _system_configuration.physmem;]])],
5e90539e 584 [AC_MSG_RESULT([yes])
585 AC_DEFINE(HAVE__SYSTEM_CONFIGURATION, 1,
7f759422 586 [Define if you have the _system_configuration variable.])],
5e90539e 587 [AC_MSG_RESULT([no])])
588
3c67ba63 589 AC_CHECK_FUNCS($checkfuncs)
71f27b28 590 AC_CHECK_DECLS([basename, ffs, asprintf, vasprintf, snprintf, vsnprintf])
f2d737fc 591 AC_CHECK_DECLS([calloc, getenv, malloc, realloc, sbrk])
28cc9eac 592 AC_CHECK_DECLS([strverscmp])
846a645c 593 libiberty_NEED_DECLARATION(canonicalize_file_name)
3c67ba63 594fi
595
8cb0536d 596# Figure out which version of pexecute to use.
597case "${host}" in
a1ba1d98 598 *-*-mingw* | *-*-winnt*) pexecute=./pex-win32.o ;;
599 *-*-msdosdjgpp*) pexecute=./pex-djgpp.o ;;
600 *-*-msdos*) pexecute=./pex-msdos.o ;;
a1ba1d98 601 *) pexecute=./pex-unix.o ;;
8cb0536d 602esac
603AC_SUBST(pexecute)
604
b3524c8f 605libiberty_AC_FUNC_STRNCMP
606
3c67ba63 607# Install a library built with a cross compiler in $(tooldir) rather
608# than $(libdir).
804ec1bf 609if test -z "${with_cross_host}"; then
3c67ba63 610 INSTALL_DEST=libdir
611else
612 INSTALL_DEST=tooldir
28e9041c 613fi
3c67ba63 614AC_SUBST(INSTALL_DEST)
615
fdf7ca85 616m4_pattern_allow(LIBOBJS)
617L=""
618for l in x $LIBOBJS; do
619 case $l in
620 x) ;;
621 *) L="$L ./$l" ;;
622 esac
623done
624LIBOBJS="$L"
625
3c67ba63 626# We need multilib support, but only if configuring for the target.
7f759422 627AC_CONFIG_FILES([Makefile testsuite/Makefile])
628AC_CONFIG_COMMANDS([default],
629 [[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
3c67ba63 630if test -n "$CONFIG_FILES"; then
ee0c04f5 631 if test -n "${with_target_subdir}"; then
3c67ba63 632 # FIXME: We shouldn't need to set ac_file
633 ac_file=Makefile
0b045cf7 634 LD="${ORIGINAL_LD_FOR_MULTILIBS}"
3c67ba63 635 . ${libiberty_topdir}/config-ml.in
636 fi
7f759422 637fi]],
638[[srcdir=${srcdir}
3c67ba63 639host=${host}
640target=${target}
641with_target_subdir=${with_target_subdir}
642with_multisubdir=${with_multisubdir}
643ac_configure_args="--enable-multilib ${ac_configure_args}"
644CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
e4e6363f 645ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"
3c67ba63 646libiberty_topdir=${libiberty_topdir}
7f759422 647]])
648AC_OUTPUT