*** empty log message ***
[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
112GCC_NO_EXECUTABLES
113AC_PROG_CC
114AC_PROG_CPP_WERROR
115
96e00b33
L
116AC_PROG_LIBTOOL
117
1a79b024
DD
118if test x$GCC = xyes; then
119 ac_libiberty_warn_cflags='-W -Wall -Wtraditional -pedantic'
120fi
121AC_SUBST(ac_libiberty_warn_cflags)
122
1a79b024
DD
123AC_C_CONST
124AC_C_INLINE
125AC_C_BIGENDIAN_CROSS
126
127dnl When we start using libtool:
128dnl Default to a non shared library. This may be overridden by the
129dnl configure option --enable-shared.
130dnl AM_DISABLE_SHARED
131
132dnl When we start using libtool:
133dnl AM_PROG_LIBTOOL
134
135dnl When we start using automake:
136dnl AM_CONFIG_HEADER(config.h:config.in)
137AC_CONFIG_HEADER(config.h:config.in)
138
139dnl When we start using automake:
140dnl AM_MAINTAINER_MODE
141dnl AC_EXEEXT
142
143dnl When we start using automake:
144dnl AM_PROG_INSTALL
145AC_PROG_INSTALL
146
147. ${srcdir}/config.table
148host_makefile_frag=${frag}
149AC_SUBST_FILE(host_makefile_frag)
150
151# It's OK to check for header files. Although the compiler may not be
152# able to link anything, it had better be able to at least compile
153# something.
bb6a587d 154AC_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)
1a79b024
DD
155AC_HEADER_SYS_WAIT
156AC_HEADER_TIME
157
158libiberty_AC_DECLARE_ERRNO
159
40a59a4c
DD
160# Determine the size of an int for struct fibnode.
161AC_CHECK_SIZEOF([int])
162
1a79b024 163AC_CHECK_TYPE(uintptr_t, unsigned long)
bb6a587d
DD
164
165# Look for a 64-bit type.
166AC_MSG_CHECKING([for a 64-bit type])
167AC_CACHE_VAL(liberty_cv_uint64,
168[AC_TRY_COMPILE(
169[#ifdef HAVE_STDINT_H
170#include <stdint.h>
171#endif],
172[extern uint64_t foo;],
173liberty_cv_uint64=uint64_t,
174[AC_TRY_COMPILE(
175[#ifdef HAVE_LIMITS_H
176#include <limits.h>
177#endif
178#ifndef CHAR_BIT
179#define CHAR_BIT 8
180#endif],
181[extern char foo[sizeof(long) * CHAR_BIT >= 64 ? 1 : -1];],
182liberty_cv_uint64="unsigned long",
183[AC_TRY_COMPILE(
184[#ifdef HAVE_LIMITS_H
185#include <limits.h>
186#endif
187#ifndef CHAR_BIT
188#define CHAR_BIT 8
189#endif],
190[extern char foo[sizeof(long long) * CHAR_BIT >= 64 ? 1 : -1];],
191liberty_cv_uint64="unsigned long long", liberty_cv_uint64=none)])])])
192AC_MSG_RESULT($liberty_cv_uint64)
193if test "$liberty_cv_uint64" != none; then
7e9f5c71
DD
194 AC_DEFINE_UNQUOTED(UNSIGNED_64BIT_TYPE, $liberty_cv_uint64,
195 [Define to an unsigned 64-bit type available in the compiler.])
bb6a587d
DD
196fi
197
1a79b024
DD
198# Given the above check, we always have uintptr_t or a fallback
199# definition. So define HAVE_UINTPTR_T in case any imported code
200# relies on it.
201AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if you have the \`uintptr_t' type.])
202
203AC_TYPE_PID_T
204
205# This is the list of functions which libiberty will provide if they
206# are not available on the host.
207
208funcs="asprintf"
209funcs="$funcs atexit"
210funcs="$funcs basename"
211funcs="$funcs bcmp"
212funcs="$funcs bcopy"
213funcs="$funcs bsearch"
214funcs="$funcs bzero"
215funcs="$funcs calloc"
216funcs="$funcs clock"
217funcs="$funcs ffs"
218funcs="$funcs getcwd"
219funcs="$funcs getpagesize"
220funcs="$funcs index"
221funcs="$funcs insque"
222funcs="$funcs memchr"
223funcs="$funcs memcmp"
224funcs="$funcs memcpy"
225funcs="$funcs memmove"
226funcs="$funcs mempcpy"
227funcs="$funcs memset"
228funcs="$funcs mkstemps"
229funcs="$funcs putenv"
230funcs="$funcs random"
231funcs="$funcs rename"
232funcs="$funcs rindex"
233funcs="$funcs setenv"
234funcs="$funcs snprintf"
235funcs="$funcs sigsetmask"
236funcs="$funcs stpcpy"
237funcs="$funcs stpncpy"
238funcs="$funcs strcasecmp"
239funcs="$funcs strchr"
240funcs="$funcs strdup"
241funcs="$funcs strncasecmp"
242funcs="$funcs strrchr"
243funcs="$funcs strstr"
244funcs="$funcs strtod"
245funcs="$funcs strtol"
246funcs="$funcs strtoul"
247funcs="$funcs tmpnam"
248funcs="$funcs vasprintf"
249funcs="$funcs vfprintf"
250funcs="$funcs vprintf"
251funcs="$funcs vsnprintf"
252funcs="$funcs vsprintf"
253funcs="$funcs waitpid"
254
255# Also in the old function.def file: alloca, vfork, getopt.
256
257vars="sys_errlist sys_nerr sys_siglist"
258
259checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
260checkfuncs="$checkfuncs realpath canonicalize_file_name pstat_getstatic pstat_getdynamic sysmp"
261checkfuncs="$checkfuncs getsysinfo table sysctl"
262
263# These are neither executed nor required, but they help keep
264# autoheader happy without adding a bunch of text to acconfig.h.
265if test "x" = "y"; then
266 AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock \
267 getcwd getpagesize index insque mkstemps memchr memcmp memcpy \
268 memmove mempcpy memset putenv random rename rindex sigsetmask \
269 strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strrchr strstr \
270 strtod strtol strtoul tmpnam vasprintf vfprintf vprintf \
271 vsprintf waitpid getrusage on_exit psignal strerror strsignal \
272 sysconf times sbrk gettimeofday ffs snprintf vsnprintf \
273 pstat_getstatic pstat_getdynamic sysmp getsysinfo table sysctl \
274 realpath canonicalize_file_name)
275 AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
276 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if you have the sys_nerr variable.])
277 AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.])
278fi
279
280# For each of these functions, if the host does not provide the
281# function we want to put FN.o in LIBOBJS, and if the host does
282# provide the function, we want to define HAVE_FN in config.h.
283
284setobjs=
285CHECK=
286target_header_dir=
287if test -n "${with_target_subdir}"; then
288
289 # We are being configured as a target library. AC_REPLACE_FUNCS
290 # may not work correctly, because the compiler may not be able to
291 # link executables. Note that we may still be being configured
292 # native.
293
294 # If we are being configured for newlib, we know which functions
295 # newlib provide and which ones we will be expected to provide.
296
297 if test "x${with_newlib}" = "xyes"; then
298 AC_LIBOBJ([asprintf])
299 AC_LIBOBJ([basename])
300 AC_LIBOBJ([insque])
301 AC_LIBOBJ([random])
302 AC_LIBOBJ([strdup])
303 AC_LIBOBJ([vasprintf])
304
305 for f in $funcs; do
306 case "$f" in
307 asprintf | basename | insque | random | strdup | vasprintf)
308 ;;
309 *)
310 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
311 AC_DEFINE_UNQUOTED($n)
312 ;;
313 esac
314 done
315
316 # newlib doesnt provide any of the variables in $vars, so we
317 # dont have to check them here.
318
319 # Of the functions in $checkfuncs, newlib only has strerror.
320 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
321
322 setobjs=yes
323
324 fi
325
326 # We may wish to install the target headers somewhere.
327 AC_ARG_ENABLE(install-libiberty,
328 [ --enable-install-libiberty Install headers for end users],
329 enable_install_libiberty=$enableval,
330 enable_install_libiberty=no)dnl
331
332 # Option parsed, now set things appropriately.
333 case x"$enable_install_libiberty" in
334 xyes|x)
335 target_header_dir=libiberty
336 ;;
337 xno)
338 target_header_dir=
339 ;;
340 *)
341 # This could be sanity-checked in various ways...
342 target_header_dir="${enable_install_libiberty}"
343 ;;
344 esac
345
346
347else
348
349 # Not a target library, so we set things up to run the test suite.
350 CHECK=check-cplus-dem
351
352fi
353
354AC_SUBST(CHECK)
355AC_SUBST(target_header_dir)
356
357case "${host}" in
358 *-*-cygwin* | *-*-mingw*)
359 AC_DEFINE_NOAUTOHEADER(HAVE_SYS_ERRLIST)
360 AC_DEFINE_NOAUTOHEADER(HAVE_SYS_NERR)
361 ;;
362esac
363
364if test -z "${setobjs}"; then
365 case "${host}" in
366
367 *-*-vxworks*)
368 # Handle VxWorks configuration specially, since on VxWorks the
369 # libraries are actually on the target board, not in the file
370 # system.
371 AC_LIBOBJ([basename])
372 AC_LIBOBJ([getpagesize])
373 AC_LIBOBJ([insque])
374 AC_LIBOBJ([random])
375 AC_LIBOBJ([strcasecmp])
376 AC_LIBOBJ([strncasecmp])
377 AC_LIBOBJ([strdup])
378 AC_LIBOBJ([vfork])
379 AC_LIBOBJ([waitpid])
380 AC_LIBOBJ([vasprintf])
381 for f in $funcs; do
382 case "$f" in
383 basename | getpagesize | insque | random | strcasecmp)
384 ;;
385 strncasecmp | strdup | vfork | waitpid | vasprintf)
386 ;;
387 *)
388 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
389 AC_DEFINE_UNQUOTED($n)
390 ;;
391 esac
392 done
393
394 # VxWorks doesn't provide any of the variables in $vars, so we
395 # don't have to check them here.
396
397 # Of the functions in $checkfuncs, VxWorks only has strerror.
398 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
399
400 setobjs=yes
401 ;;
402
403 esac
404fi
405
406if test -z "${setobjs}"; then
407
408 case "${host}" in
409
410 *-*-cygwin*)
411 # The Cygwin library actually uses a couple of files from
412 # libiberty when it is built. If we are building a native
413 # Cygwin, and we run the tests, we will appear to have these
414 # files. However, when we go on to build winsup, we will wind up
415 # with a library which does not have the files, since they should
416 # have come from libiberty.
417
418 # We handle this by removing the functions the winsup library
419 # provides from our shell variables, so that they appear to be
420 # missing.
421
422 # DJ - only if we're *building* cygwin, not just building *with* cygwin
423
424 if test -n "${with_target_subdir}"
425 then
426 funcs="`echo $funcs | sed -e 's/random//'`"
427 AC_LIBOBJ([random])
428 vars="`echo $vars | sed -e 's/sys_siglist//'`"
429 checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`"
430 fi
431 ;;
432
433 *-*-mingw32*)
434 # Under mingw32, sys_nerr and sys_errlist exist, but they are
435 # macros, so the test below won't find them.
436 libiberty_cv_var_sys_nerr=yes
437 libiberty_cv_var_sys_errlist=yes
438 ;;
439
440 *-*-uwin*)
441 # Under some versions of uwin, vfork is notoriously buggy and the test
442 # can hang configure; on other versions, vfork exists just as a stub.
443 # FIXME: This should be removed once vfork in uwin's runtime is fixed.
444 ac_cv_func_vfork_works=no
445 # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are
446 # macros (actually, these are imported from a DLL, but the end effect
447 # is the same), so the test below won't find them.
448 libiberty_cv_var_sys_nerr=yes
449 libiberty_cv_var_sys_errlist=yes
450 ;;
451
452 *-*-*vms*)
453 # Under VMS, vfork works very different than on Unix. The standard test
454 # won't work, and it isn't easily adaptable. It makes more sense to
455 # just force it.
456 ac_cv_func_vfork_works=yes
457 ;;
458
459 esac
460
461 # We haven't set the list of objects yet. Use the standard autoconf
462 # tests. This will only work if the compiler works.
463 AC_ISC_POSIX
464 AC_REPLACE_FUNCS($funcs)
465 libiberty_AC_FUNC_C_ALLOCA
85f969cd 466 AC_FUNC_FORK
1a79b024
DD
467 if test $ac_cv_func_vfork_works = no; then
468 AC_LIBOBJ([vfork])
469 fi
470 # We only need _doprnt if we might use it to implement v*printf.
471 if test $ac_cv_func_vprintf != yes \
472 || test $ac_cv_func_vfprintf != yes \
473 || test $ac_cv_func_vsprintf != yes; then
474 AC_REPLACE_FUNCS(_doprnt)
475 else
476 AC_CHECK_FUNCS(_doprnt)
477 fi
478
479 for v in $vars; do
480 AC_MSG_CHECKING([for $v])
481 AC_CACHE_VAL(libiberty_cv_var_$v,
85f969cd
DD
482 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[int *p;]],[[extern int $v []; p = $v;]])],
483 [eval "libiberty_cv_var_$v=yes"],
484 [eval "libiberty_cv_var_$v=no"])])
1a79b024
DD
485 if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
486 AC_MSG_RESULT(yes)
487 n=HAVE_`echo $v | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
488 AC_DEFINE_UNQUOTED($n)
489 else
490 AC_MSG_RESULT(no)
491 fi
492 done
493
494 # special check for _system_configuration because AIX <4.3.2 do not
495 # contain the `physmem' member.
496 AC_MSG_CHECKING([for external symbol _system_configuration])
85f969cd
DD
497 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/systemcfg.h>]],
498 [[double x = _system_configuration.physmem;]])],
1a79b024
DD
499 [AC_MSG_RESULT([yes])
500 AC_DEFINE(HAVE__SYSTEM_CONFIGURATION, 1,
85f969cd 501 [Define if you have the _system_configuration variable.])],
1a79b024
DD
502 [AC_MSG_RESULT([no])])
503
504 AC_CHECK_FUNCS($checkfuncs)
505 libiberty_NEED_DECLARATION(canonicalize_file_name)
506fi
507
508# Figure out which version of pexecute to use.
509case "${host}" in
96e00b33
L
510 *-*-mingw* | *-*-winnt*) pex=./pex-win32 ;;
511 *-*-msdosdjgpp*) pex=./pex-djgpp ;;
512 *-*-msdos*) pex=./pex-msdos ;;
513 *-*-os2-emx*) pex=./pex-os2 ;;
514 *) pex=./pex-unix ;;
1a79b024 515esac
96e00b33
L
516pexecute=${pex}.o
517ltpexecute=${pex}.lo
1a79b024 518AC_SUBST(pexecute)
96e00b33 519AC_SUBST(ltpexecute)
1a79b024
DD
520
521libiberty_AC_FUNC_STRNCMP
522
523# Install a library built with a cross compiler in $(tooldir) rather
524# than $(libdir).
525if test -z "${with_cross_host}"; then
526 INSTALL_DEST=libdir
527else
528 INSTALL_DEST=tooldir
529fi
530AC_SUBST(INSTALL_DEST)
531
532# We need multilib support, but only if configuring for the target.
85f969cd
DD
533AC_CONFIG_FILES([Makefile testsuite/Makefile])
534AC_CONFIG_COMMANDS([default],
535 [[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
1a79b024 536if test -n "$CONFIG_FILES"; then
f5396bbe 537 if test -n "${with_target_subdir}"; then
1a79b024
DD
538 # FIXME: We shouldn't need to set ac_file
539 ac_file=Makefile
540 LD="${ORIGINAL_LD_FOR_MULTILIBS}"
541 . ${libiberty_topdir}/config-ml.in
542 fi
85f969cd
DD
543fi]],
544[[srcdir=${srcdir}
1a79b024
DD
545host=${host}
546target=${target}
547with_target_subdir=${with_target_subdir}
1a79b024
DD
548with_multisubdir=${with_multisubdir}
549ac_configure_args="--enable-multilib ${ac_configure_args}"
550CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
551ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"
552libiberty_topdir=${libiberty_topdir}
85f969cd
DD
553]])
554AC_OUTPUT
This page took 0.078479 seconds and 4 git commands to generate.