* configure.ac: Non-default multilibs can be cross compilations.
[deliverable/binutils-gdb.git] / libiberty / configure.ac
CommitLineData
1a79b024
DD
1dnl Process this file with autoconf to produce a configure script
2
85f969cd
DD
3AC_PREREQ(2.59)
4AC_INIT
5AC_CONFIG_SRCDIR([xmalloc.c])
1a79b024
DD
6
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
13dnl We use these options to decide which functions to include.
14AC_ARG_WITH(target-subdir,
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])
18AC_ARG_WITH(cross-host,
19[ --with-cross-host=HOST Configuring with a cross compiler])
20AC_ARG_WITH(newlib,
21[ --with-newlib Configuring with newlib])
22
23if test "${srcdir}" = "."; then
24 if test -n "${with_build_subdir}"; then
25 libiberty_topdir="${srcdir}/../.."
26 with_target_subdir=
27 elif test -z "${with_target_subdir}"; then
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
39AC_SUBST(libiberty_topdir)
40AC_CONFIG_AUX_DIR($libiberty_topdir)
41
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
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, )
68if test "x$MAKEINFO" = "x"; then
69 MAKEINFO="@echo makeinfo missing; true"
70 BUILD_INFO=
71else
72 BUILD_INFO=info
73 case "$MAKEINFO" in
74 */missing\ makeinfo*)
75 BUILD_INFO=
76 AC_MSG_WARN([
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([
85*** Makeinfo is too old. Info documentation will not be built.])
86 ;;
87 esac
88 ;;
89 esac
90fi
91AC_SUBST(MAKEINFO)
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
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
958afec3
GK
112dnl When switching to automake, replace the following with AM_ENABLE_MULTILIB.
113# Add --enable-multilib to configure.
114# Default to --enable-multilib
115AC_ARG_ENABLE(multilib,
116[ --enable-multilib build many library versions (default)],
117[case "$enableval" in
118 yes) multilib=yes ;;
119 no) multilib=no ;;
120 *) AC_MSG_ERROR([bad value $enableval for multilib option]) ;;
121 esac],
122 [multilib=yes])
123
124# Even if the default multilib is not a cross compilation,
125# it may be that some of the other multilibs are.
126if test $cross_compiling = no && test $multilib = yes \
127 && test "x${with_multisubdir}" != x ; then
128 cross_compiling=maybe
129fi
130
1a79b024
DD
131GCC_NO_EXECUTABLES
132AC_PROG_CC
133AC_PROG_CPP_WERROR
134
fd7d450d
DD
135# Warn C++ incompatibilities if supported.
136AC_CACHE_CHECK(
137 [whether ${CC} accepts -Wc++-compat],
138 [ac_cv_prog_cc_w_cxx_compat],
139 [save_CFLAGS="$CFLAGS"
140 CFLAGS="-Wc++-compat"
141 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[]])],
142 [ac_cv_prog_cc_w_cxx_compat=yes],
143 [ac_cv_prog_cc_w_cxx_compat=no])
144 CFLAGS="$save_CFLAGS"
145 ])
146
147
1a79b024 148if test x$GCC = xyes; then
aa55ccb1 149 ac_libiberty_warn_cflags='-W -Wall -pedantic -Wwrite-strings -Wstrict-prototypes'
1a79b024 150fi
fd7d450d
DD
151if test $ac_cv_prog_cc_w_cxx_compat = yes ; then
152 ac_libiberty_warn_cflags="${ac_libiberty_warn_cflags} -Wc++-compat"
153fi
1a79b024
DD
154AC_SUBST(ac_libiberty_warn_cflags)
155
46a10049
DD
156AC_PROG_CC_C_O
157# autoconf is lame and doesn't give us any substitution variable for this.
158if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
159 NO_MINUS_C_MINUS_O=yes
160else
161 OUTPUT_OPTION='-o $@'
162fi
163AC_SUBST(NO_MINUS_C_MINUS_O)
164AC_SUBST(OUTPUT_OPTION)
165
1a79b024
DD
166AC_C_CONST
167AC_C_INLINE
0093138c 168AC_C_BIGENDIAN
1a79b024 169
46a10049 170dnl When we start using libtool:
1a79b024
DD
171dnl Default to a non shared library. This may be overridden by the
172dnl configure option --enable-shared.
46a10049 173dnl AM_DISABLE_SHARED
1a79b024 174
46a10049
DD
175dnl When we start using libtool:
176dnl AM_PROG_LIBTOOL
1a79b024
DD
177
178dnl When we start using automake:
179dnl AM_CONFIG_HEADER(config.h:config.in)
180AC_CONFIG_HEADER(config.h:config.in)
181
182dnl When we start using automake:
183dnl AM_MAINTAINER_MODE
184dnl AC_EXEEXT
185
186dnl When we start using automake:
187dnl AM_PROG_INSTALL
188AC_PROG_INSTALL
189
4cf896a5
KC
190# Don't build the shared library for build.
191if [[ -n "${with_build_subdir}" ]]; then
192 enable_shared=no
193fi
194
195frag=
196case "${host}" in
197 rs6000-ibm-aix3.1 | rs6000-ibm-aix)
198 frag=mh-aix ;;
199 *-*-cxux7*) frag=mh-cxux7 ;;
200 *-*-freebsd2.1.*) frag=mh-fbsd21 ;;
201 *-*-freebsd2.2.[[012]]) frag=mh-fbsd21 ;;
202 i370-*-opened*) frag=mh-openedition ;;
203 i[[34567]]86-*-windows*) frag=mh-windows ;;
204esac
205
206if [[ -n "${frag}" ]]; then
207 frags=${libiberty_topdir}/libiberty/config/$frag
208else
209 frags=
210fi
211
212# If they didn't specify --enable-shared, don't generate shared libs.
213case "${enable_shared}" in
214 yes) shared=yes ;;
215 no) shared=no ;;
216 "") shared=no ;;
217 *) shared=yes ;;
218esac
219if [[ "${shared}" = "yes" ]]; then
220 frag=
221 case "${host}" in
222 *-*-cygwin*) ;;
223 alpha*-*-linux*) frag=mh-elfalphapic ;;
224 arm*-*-*) frag=mh-armpic ;;
225 hppa*-*-*) frag=mh-papic ;;
226 i[[34567]]86-*-* | x86_64-*-*)
227 frag=mh-x86pic ;;
228 powerpc*-*-aix*) ;;
229 powerpc*-*-*) frag=mh-ppcpic ;;
230 sparc*-*-*) frag=mh-sparcpic ;;
231 s390*-*-*) frag=mh-s390pic ;;
232 *) frag=mh-${host_cpu}pic ;;
233 esac
234 if [[ -n "${frag}" ]]; then
235 frags="${frags} ${libiberty_topdir}/config/${frag}"
236 fi
237fi
238
239echo "# Warning: this fragment is automatically generated" > temp-frag
240
241for frag in ${frags}; do
242 if [[ -f ${frag} ]]; then
243 echo "Appending ${frag} to xhost-mkfrag"
244 echo "# Following fragment copied from ${frag}" >> temp-frag
245 cat ${frag} >> temp-frag
246 fi
247done
248
249# record if we want to build shared libs.
250if [[ "${shared}" = "yes" ]]; then
251 echo enable_shared = yes >> temp-frag
252else
253 echo enable_shared = no >> temp-frag
254fi
255
256frag=xhost-mkfrag
257${CONFIG_SHELL-/bin/sh} ${libiberty_topdir}/move-if-change temp-frag xhost-mkfrag
258
1a79b024
DD
259host_makefile_frag=${frag}
260AC_SUBST_FILE(host_makefile_frag)
261
262# It's OK to check for header files. Although the compiler may not be
263# able to link anything, it had better be able to at least compile
264# something.
ac119ae8 265AC_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)
1a79b024
DD
266AC_HEADER_SYS_WAIT
267AC_HEADER_TIME
268
269libiberty_AC_DECLARE_ERRNO
270
40a59a4c
DD
271# Determine the size of an int for struct fibnode.
272AC_CHECK_SIZEOF([int])
273
1a79b024 274AC_CHECK_TYPE(uintptr_t, unsigned long)
bb6a587d
DD
275
276# Look for a 64-bit type.
277AC_MSG_CHECKING([for a 64-bit type])
278AC_CACHE_VAL(liberty_cv_uint64,
279[AC_TRY_COMPILE(
280[#ifdef HAVE_STDINT_H
281#include <stdint.h>
282#endif],
283[extern uint64_t foo;],
284liberty_cv_uint64=uint64_t,
285[AC_TRY_COMPILE(
286[#ifdef HAVE_LIMITS_H
287#include <limits.h>
288#endif
289#ifndef CHAR_BIT
290#define CHAR_BIT 8
291#endif],
292[extern char foo[sizeof(long) * CHAR_BIT >= 64 ? 1 : -1];],
293liberty_cv_uint64="unsigned long",
294[AC_TRY_COMPILE(
295[#ifdef HAVE_LIMITS_H
296#include <limits.h>
297#endif
298#ifndef CHAR_BIT
299#define CHAR_BIT 8
300#endif],
301[extern char foo[sizeof(long long) * CHAR_BIT >= 64 ? 1 : -1];],
302liberty_cv_uint64="unsigned long long", liberty_cv_uint64=none)])])])
303AC_MSG_RESULT($liberty_cv_uint64)
304if test "$liberty_cv_uint64" != none; then
7e9f5c71
DD
305 AC_DEFINE_UNQUOTED(UNSIGNED_64BIT_TYPE, $liberty_cv_uint64,
306 [Define to an unsigned 64-bit type available in the compiler.])
bb6a587d
DD
307fi
308
1a79b024
DD
309# Given the above check, we always have uintptr_t or a fallback
310# definition. So define HAVE_UINTPTR_T in case any imported code
311# relies on it.
312AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if you have the \`uintptr_t' type.])
313
314AC_TYPE_PID_T
315
316# This is the list of functions which libiberty will provide if they
317# are not available on the host.
318
319funcs="asprintf"
320funcs="$funcs atexit"
321funcs="$funcs basename"
322funcs="$funcs bcmp"
323funcs="$funcs bcopy"
324funcs="$funcs bsearch"
325funcs="$funcs bzero"
326funcs="$funcs calloc"
327funcs="$funcs clock"
328funcs="$funcs ffs"
329funcs="$funcs getcwd"
330funcs="$funcs getpagesize"
8ec32723 331funcs="$funcs gettimeofday"
1a79b024
DD
332funcs="$funcs index"
333funcs="$funcs insque"
334funcs="$funcs memchr"
335funcs="$funcs memcmp"
336funcs="$funcs memcpy"
337funcs="$funcs memmove"
338funcs="$funcs mempcpy"
339funcs="$funcs memset"
340funcs="$funcs mkstemps"
341funcs="$funcs putenv"
342funcs="$funcs random"
343funcs="$funcs rename"
344funcs="$funcs rindex"
345funcs="$funcs setenv"
346funcs="$funcs snprintf"
347funcs="$funcs sigsetmask"
348funcs="$funcs stpcpy"
349funcs="$funcs stpncpy"
350funcs="$funcs strcasecmp"
351funcs="$funcs strchr"
352funcs="$funcs strdup"
353funcs="$funcs strncasecmp"
0fad4bdb 354funcs="$funcs strndup"
1a79b024
DD
355funcs="$funcs strrchr"
356funcs="$funcs strstr"
357funcs="$funcs strtod"
358funcs="$funcs strtol"
359funcs="$funcs strtoul"
67f3cb05 360funcs="$funcs strverscmp"
1a79b024
DD
361funcs="$funcs tmpnam"
362funcs="$funcs vasprintf"
363funcs="$funcs vfprintf"
364funcs="$funcs vprintf"
365funcs="$funcs vsnprintf"
366funcs="$funcs vsprintf"
367funcs="$funcs waitpid"
368
369# Also in the old function.def file: alloca, vfork, getopt.
370
371vars="sys_errlist sys_nerr sys_siglist"
372
373checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
374checkfuncs="$checkfuncs realpath canonicalize_file_name pstat_getstatic pstat_getdynamic sysmp"
ac119ae8 375checkfuncs="$checkfuncs getsysinfo table sysctl wait3 wait4 __fsetlocking"
1a79b024
DD
376
377# These are neither executed nor required, but they help keep
378# autoheader happy without adding a bunch of text to acconfig.h.
379if test "x" = "y"; then
380 AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock \
8ec32723 381 getcwd getpagesize gettimeofday index insque mkstemps memchr memcmp memcpy \
1a79b024 382 memmove mempcpy memset putenv random rename rindex sigsetmask \
0fad4bdb 383 strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strndup strrchr strstr \
67f3cb05 384 strtod strtol strtoul strverscmp tmpnam vasprintf vfprintf vprintf \
1a79b024
DD
385 vsprintf waitpid getrusage on_exit psignal strerror strsignal \
386 sysconf times sbrk gettimeofday ffs snprintf vsnprintf \
b109e79a 387 pstat_getstatic pstat_getdynamic sysmp getsysinfo table sysctl wait3 wait4 \
ac119ae8 388 realpath canonicalize_file_name __fsetlocking)
01e94249 389 AC_CHECK_DECLS([basename, ffs, asprintf, vasprintf, snprintf, vsnprintf])
1a79b024
DD
390 AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
391 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if you have the sys_nerr variable.])
392 AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.])
393fi
394
395# For each of these functions, if the host does not provide the
396# function we want to put FN.o in LIBOBJS, and if the host does
397# provide the function, we want to define HAVE_FN in config.h.
398
399setobjs=
400CHECK=
401target_header_dir=
402if test -n "${with_target_subdir}"; then
403
404 # We are being configured as a target library. AC_REPLACE_FUNCS
405 # may not work correctly, because the compiler may not be able to
406 # link executables. Note that we may still be being configured
407 # native.
408
409 # If we are being configured for newlib, we know which functions
410 # newlib provide and which ones we will be expected to provide.
411
412 if test "x${with_newlib}" = "xyes"; then
413 AC_LIBOBJ([asprintf])
414 AC_LIBOBJ([basename])
415 AC_LIBOBJ([insque])
416 AC_LIBOBJ([random])
417 AC_LIBOBJ([strdup])
418 AC_LIBOBJ([vasprintf])
419
420 for f in $funcs; do
421 case "$f" in
422 asprintf | basename | insque | random | strdup | vasprintf)
423 ;;
424 *)
425 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
426 AC_DEFINE_UNQUOTED($n)
427 ;;
428 esac
429 done
430
431 # newlib doesnt provide any of the variables in $vars, so we
432 # dont have to check them here.
433
434 # Of the functions in $checkfuncs, newlib only has strerror.
0093138c 435 AC_DEFINE(HAVE_STRERROR)
1a79b024
DD
436
437 setobjs=yes
438
439 fi
440
069e4b19
CV
441 # If we are being configured for Mingw, we know which functions
442 # Mingw provides and which ones we will be expected to provide.
443
444 case "${host}" in
445 *-*-mingw*)
446 AC_LIBOBJ([asprintf])
447 AC_LIBOBJ([basename])
448 AC_LIBOBJ([bcmp])
449 AC_LIBOBJ([bcopy])
450 AC_LIBOBJ([bzero])
451 AC_LIBOBJ([clock])
452 AC_LIBOBJ([ffs])
453 AC_LIBOBJ([getpagesize])
454 AC_LIBOBJ([index])
455 AC_LIBOBJ([insque])
456 AC_LIBOBJ([mempcpy])
457 AC_LIBOBJ([mkstemps])
458 AC_LIBOBJ([random])
459 AC_LIBOBJ([rindex])
460 AC_LIBOBJ([sigsetmask])
461 AC_LIBOBJ([stpcpy])
462 AC_LIBOBJ([stpncpy])
463 AC_LIBOBJ([strndup])
464 AC_LIBOBJ([strverscmp])
465 AC_LIBOBJ([vasprintf])
466 AC_LIBOBJ([waitpid])
467
468 for f in $funcs; do
469 case "$f" in
470 asprintf | basename | bcmp | bcopy | bzero | clock | ffs | getpagesize | index | insque | mempcpy | mkstemps | random | rindex | sigsetmask | stpcpy | stpncpy | strdup | strndup | strverscmp | vasprintf | waitpid)
471 ;;
472 *)
473 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
474 AC_DEFINE_UNQUOTED($n)
475 ;;
476 esac
477 done
478
479 # Mingw doesnt provide any of the variables in $vars, so we
480 # dont have to check them here.
481
482 # Of the functions in $checkfuncs, Mingw only has strerror.
483 AC_DEFINE(HAVE_STRERROR)
484
485 setobjs=yes
486 ;;
487
488 esac
489
1a79b024
DD
490 # We may wish to install the target headers somewhere.
491 AC_ARG_ENABLE(install-libiberty,
492 [ --enable-install-libiberty Install headers for end users],
493 enable_install_libiberty=$enableval,
494 enable_install_libiberty=no)dnl
495
496 # Option parsed, now set things appropriately.
497 case x"$enable_install_libiberty" in
498 xyes|x)
499 target_header_dir=libiberty
500 ;;
501 xno)
502 target_header_dir=
503 ;;
504 *)
505 # This could be sanity-checked in various ways...
506 target_header_dir="${enable_install_libiberty}"
507 ;;
508 esac
509
510
511else
512
513 # Not a target library, so we set things up to run the test suite.
b109e79a 514 CHECK=really-check
1a79b024
DD
515
516fi
517
518AC_SUBST(CHECK)
519AC_SUBST(target_header_dir)
520
521case "${host}" in
522 *-*-cygwin* | *-*-mingw*)
0093138c
DD
523 AC_DEFINE(HAVE_SYS_ERRLIST)
524 AC_DEFINE(HAVE_SYS_NERR)
1a79b024
DD
525 ;;
526esac
527
528if test -z "${setobjs}"; then
529 case "${host}" in
530
531 *-*-vxworks*)
532 # Handle VxWorks configuration specially, since on VxWorks the
533 # libraries are actually on the target board, not in the file
534 # system.
535 AC_LIBOBJ([basename])
536 AC_LIBOBJ([getpagesize])
537 AC_LIBOBJ([insque])
538 AC_LIBOBJ([random])
539 AC_LIBOBJ([strcasecmp])
540 AC_LIBOBJ([strncasecmp])
541 AC_LIBOBJ([strdup])
542 AC_LIBOBJ([vfork])
543 AC_LIBOBJ([waitpid])
544 AC_LIBOBJ([vasprintf])
545 for f in $funcs; do
546 case "$f" in
547 basename | getpagesize | insque | random | strcasecmp)
548 ;;
549 strncasecmp | strdup | vfork | waitpid | vasprintf)
550 ;;
551 *)
552 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
553 AC_DEFINE_UNQUOTED($n)
554 ;;
555 esac
556 done
557
558 # VxWorks doesn't provide any of the variables in $vars, so we
559 # don't have to check them here.
560
561 # Of the functions in $checkfuncs, VxWorks only has strerror.
0093138c 562 AC_DEFINE(HAVE_STRERROR)
1a79b024 563
1f92e180
DD
564 setobjs=yes
565 ;;
566
567 *-*-msdosdjgpp)
568 for f in atexit basename bcmp bcopy bsearch bzero calloc clock ffs \
569 getcwd getpagesize getrusage gettimeofday gettimeofday \
570 index insque memchr memcmp memcpy memmove memset psignal \
571 putenv random rename rindex sbrk setenv stpcpy strcasecmp \
572 strchr strdup strerror strncasecmp strrchr strstr strtod \
573 strtol strtoul sysconf times tmpnam vfprintf vprintf \
574 vsprintf waitpid
575 do
576 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
577 AC_DEFINE_UNQUOTED($n)
578 done
579
580
1a79b024
DD
581 setobjs=yes
582 ;;
583
584 esac
585fi
586
587if test -z "${setobjs}"; then
588
589 case "${host}" in
590
591 *-*-cygwin*)
592 # The Cygwin library actually uses a couple of files from
593 # libiberty when it is built. If we are building a native
594 # Cygwin, and we run the tests, we will appear to have these
595 # files. However, when we go on to build winsup, we will wind up
596 # with a library which does not have the files, since they should
597 # have come from libiberty.
598
599 # We handle this by removing the functions the winsup library
600 # provides from our shell variables, so that they appear to be
601 # missing.
602
603 # DJ - only if we're *building* cygwin, not just building *with* cygwin
604
605 if test -n "${with_target_subdir}"
606 then
607 funcs="`echo $funcs | sed -e 's/random//'`"
608 AC_LIBOBJ([random])
609 vars="`echo $vars | sed -e 's/sys_siglist//'`"
610 checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`"
611 fi
612 ;;
613
614 *-*-mingw32*)
615 # Under mingw32, sys_nerr and sys_errlist exist, but they are
616 # macros, so the test below won't find them.
617 libiberty_cv_var_sys_nerr=yes
618 libiberty_cv_var_sys_errlist=yes
619 ;;
620
65dce80e
DD
621 *-*-msdosdjgpp*)
622 # vfork and fork are stubs.
623 ac_cv_func_vfork_works=no
624 ;;
625
1a79b024
DD
626 *-*-uwin*)
627 # Under some versions of uwin, vfork is notoriously buggy and the test
628 # can hang configure; on other versions, vfork exists just as a stub.
629 # FIXME: This should be removed once vfork in uwin's runtime is fixed.
630 ac_cv_func_vfork_works=no
631 # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are
632 # macros (actually, these are imported from a DLL, but the end effect
633 # is the same), so the test below won't find them.
634 libiberty_cv_var_sys_nerr=yes
635 libiberty_cv_var_sys_errlist=yes
636 ;;
637
638 *-*-*vms*)
639 # Under VMS, vfork works very different than on Unix. The standard test
640 # won't work, and it isn't easily adaptable. It makes more sense to
641 # just force it.
642 ac_cv_func_vfork_works=yes
643 ;;
644
645 esac
646
647 # We haven't set the list of objects yet. Use the standard autoconf
648 # tests. This will only work if the compiler works.
649 AC_ISC_POSIX
650 AC_REPLACE_FUNCS($funcs)
651 libiberty_AC_FUNC_C_ALLOCA
85f969cd 652 AC_FUNC_FORK
1a79b024
DD
653 if test $ac_cv_func_vfork_works = no; then
654 AC_LIBOBJ([vfork])
655 fi
656 # We only need _doprnt if we might use it to implement v*printf.
657 if test $ac_cv_func_vprintf != yes \
658 || test $ac_cv_func_vfprintf != yes \
659 || test $ac_cv_func_vsprintf != yes; then
660 AC_REPLACE_FUNCS(_doprnt)
661 else
662 AC_CHECK_FUNCS(_doprnt)
663 fi
664
665 for v in $vars; do
666 AC_MSG_CHECKING([for $v])
667 AC_CACHE_VAL(libiberty_cv_var_$v,
85f969cd
DD
668 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[int *p;]],[[extern int $v []; p = $v;]])],
669 [eval "libiberty_cv_var_$v=yes"],
670 [eval "libiberty_cv_var_$v=no"])])
1a79b024
DD
671 if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
672 AC_MSG_RESULT(yes)
673 n=HAVE_`echo $v | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
674 AC_DEFINE_UNQUOTED($n)
675 else
676 AC_MSG_RESULT(no)
677 fi
678 done
679
680 # special check for _system_configuration because AIX <4.3.2 do not
681 # contain the `physmem' member.
682 AC_MSG_CHECKING([for external symbol _system_configuration])
85f969cd
DD
683 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/systemcfg.h>]],
684 [[double x = _system_configuration.physmem;]])],
1a79b024
DD
685 [AC_MSG_RESULT([yes])
686 AC_DEFINE(HAVE__SYSTEM_CONFIGURATION, 1,
85f969cd 687 [Define if you have the _system_configuration variable.])],
1a79b024
DD
688 [AC_MSG_RESULT([no])])
689
690 AC_CHECK_FUNCS($checkfuncs)
01e94249 691 AC_CHECK_DECLS([basename, ffs, asprintf, vasprintf, snprintf, vsnprintf])
a4e5c0d8 692 AC_CHECK_DECLS([calloc, getenv, getopt, malloc, realloc, sbrk])
67f3cb05 693 AC_CHECK_DECLS([strverscmp])
1a79b024
DD
694 libiberty_NEED_DECLARATION(canonicalize_file_name)
695fi
696
697# Figure out which version of pexecute to use.
698case "${host}" in
46a10049
DD
699 *-*-mingw* | *-*-winnt*) pexecute=./pex-win32.o ;;
700 *-*-msdosdjgpp*) pexecute=./pex-djgpp.o ;;
701 *-*-msdos*) pexecute=./pex-msdos.o ;;
46a10049 702 *) pexecute=./pex-unix.o ;;
1a79b024
DD
703esac
704AC_SUBST(pexecute)
705
706libiberty_AC_FUNC_STRNCMP
707
708# Install a library built with a cross compiler in $(tooldir) rather
709# than $(libdir).
710if test -z "${with_cross_host}"; then
711 INSTALL_DEST=libdir
712else
713 INSTALL_DEST=tooldir
714fi
715AC_SUBST(INSTALL_DEST)
716
11a338da
DD
717m4_pattern_allow(LIBOBJS)
718L=""
719for l in x $LIBOBJS; do
720 case $l in
721 x) ;;
722 *) L="$L ./$l" ;;
723 esac
724done
725LIBOBJS="$L"
726
545c9aee
DD
727dnl Required by html and install-html
728AC_SUBST(datarootdir)
729AC_SUBST(docdir)
730AC_SUBST(htmldir)
731
1a79b024 732# We need multilib support, but only if configuring for the target.
85f969cd
DD
733AC_CONFIG_FILES([Makefile testsuite/Makefile])
734AC_CONFIG_COMMANDS([default],
735 [[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
1a79b024 736if test -n "$CONFIG_FILES"; then
f5396bbe 737 if test -n "${with_target_subdir}"; then
1a79b024
DD
738 # FIXME: We shouldn't need to set ac_file
739 ac_file=Makefile
740 LD="${ORIGINAL_LD_FOR_MULTILIBS}"
741 . ${libiberty_topdir}/config-ml.in
742 fi
85f969cd
DD
743fi]],
744[[srcdir=${srcdir}
1a79b024
DD
745host=${host}
746target=${target}
747with_target_subdir=${with_target_subdir}
1a79b024
DD
748with_multisubdir=${with_multisubdir}
749ac_configure_args="--enable-multilib ${ac_configure_args}"
750CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
751ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"
752libiberty_topdir=${libiberty_topdir}
85f969cd
DD
753]])
754AC_OUTPUT
This page took 0.170425 seconds and 4 git commands to generate.