1 dnl Process this file with autoconf to produce a configure script
6 dnl We use these options to decide which functions to include.
7 AC_ARG_WITH(target-subdir,
8 [ --with-target-subdir=SUBDIR Configuring in a subdirectory])
9 AC_ARG_WITH(cross-host,
10 [ --with-cross-host=HOST Configuring with a cross compiler])
12 [ --with-newlib Configuring with newlib])
14 if test "${srcdir}" = "."; then
15 if test -z "${with_target_subdir}"; then
16 libiberty_topdir="${srcdir}/.."
18 if test "${with_target_subdir}" != "."; then
19 libiberty_topdir="${srcdir}/${with_multisrctop}../.."
21 libiberty_topdir="${srcdir}/${with_multisrctop}.."
25 libiberty_topdir="${srcdir}/.."
27 AC_CONFIG_AUX_DIR($libiberty_topdir)
29 dnl Very limited version of automake's enable-maintainer-mode
31 AC_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,
40 AC_MSG_RESULT($maintainer_mode)
42 if test "$maintainer_mode" = "yes"; then
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.
54 AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
55 if test "x$MAKEINFO" = "x"; then
56 MAKEINFO="@echo makeinfo missing; true"
60 case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in
62 MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required; true"
65 *** Makeinfo is too old. Info documentation will not be built.])
72 AC_CHECK_PROG(PERL, perl, perl, )
73 if test x"$PERL" = x""; then
82 dnl When we start using automake:
83 dnl AM_INIT_AUTOMAKE(libiberty, 1.0)
85 dnl These must be called before AM_PROG_LIBTOOL, because it may want
86 dnl to call AC_CHECK_PROG.
88 AC_CHECK_TOOL(RANLIB, ranlib, :)
96 dnl When we start using libtool:
97 dnl Default to a non shared library. This may be overridden by the
98 dnl configure option --enable-shared.
101 dnl When we start using libtool:
104 dnl When we start using automake:
105 dnl AM_CONFIG_HEADER(config.h:config.in)
106 AC_CONFIG_HEADER(config.h:config.in)
108 dnl When we start using automake:
109 dnl AM_MAINTAINER_MODE
112 dnl When we start using automake:
116 . ${srcdir}/config.table
117 host_makefile_frag=${frag}
118 AC_SUBST_FILE(host_makefile_frag)
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
123 AC_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)
127 libiberty_AC_DECLARE_ERRNO
129 AC_CHECK_TYPE(uintptr_t, unsigned long)
131 if test $ac_cv_type_uintptr_t = yes
133 AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if you have the \`uintptr_t' type.])
136 # This is the list of functions which libiberty will provide if they
137 # are not available on the host.
140 funcs="$funcs atexit"
141 funcs="$funcs basename"
144 funcs="$funcs bsearch"
146 funcs="$funcs calloc"
149 funcs="$funcs getcwd"
150 funcs="$funcs getpagesize"
152 funcs="$funcs insque"
153 funcs="$funcs memchr"
154 funcs="$funcs memcmp"
155 funcs="$funcs memcpy"
156 funcs="$funcs memmove"
157 funcs="$funcs memset"
158 funcs="$funcs mkstemps"
159 funcs="$funcs putenv"
160 funcs="$funcs random"
161 funcs="$funcs rename"
162 funcs="$funcs rindex"
163 funcs="$funcs setenv"
164 funcs="$funcs sigsetmask"
165 funcs="$funcs strcasecmp"
166 funcs="$funcs strchr"
167 funcs="$funcs strdup"
168 funcs="$funcs strncasecmp"
169 funcs="$funcs strrchr"
170 funcs="$funcs strstr"
171 funcs="$funcs strtod"
172 funcs="$funcs strtol"
173 funcs="$funcs strtoul"
174 funcs="$funcs tmpnam"
175 funcs="$funcs vasprintf"
176 funcs="$funcs vfprintf"
177 funcs="$funcs vprintf"
178 funcs="$funcs vsprintf"
179 funcs="$funcs waitpid"
181 # Also in the old function.def file: alloca, vfork, getopt.
183 vars="sys_errlist sys_nerr sys_siglist"
185 checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
187 # These are neither executed nor required, but they help keep
188 # autoheader happy without adding a bunch of text to acconfig.h.
189 if test "x" = "y"; then
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)
196 AC_CHECK_FUNCS(sysconf times sbrk gettimeofday ffs)
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.])
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
204 # provide the function, we want to define HAVE_FN in config.h.
209 if test -n "${with_target_subdir}"; then
211 # We are being configured as a target library. AC_REPLACE_FUNCS
212 # may not work correctly, because the compiler may not be able to
213 # link executables. Note that we may still be being configured
216 # If we are being configured for newlib, we know which functions
217 # newlib provide and which ones we will be expected to provide.
219 if test "x${with_newlib}" = "xyes"; then
220 LIBOBJS="asprintf.o basename.o insque.o random.o strdup.o vasprintf.o"
224 asprintf | basename | insque | random | strdup | vasprintf)
227 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
228 AC_DEFINE_UNQUOTED($n)
233 # newlib doesnt provide any of the variables in $vars, so we
234 # dont have to check them here.
236 # Of the functions in $checkfuncs, newlib only has strerror.
237 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
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
249 # Option parsed, now set things appropriately.
250 case x"$enable_install_libiberty" in
252 target_header_dir=libiberty
258 # This could be sanity-checked in various ways...
259 target_header_dir="${enable_install_libiberty}"
266 # Not a target library, so we set things up to run the test suite.
267 CHECK=check-cplus-dem
272 AC_SUBST(target_header_dir)
275 *-*-cygwin* | *-*-mingw*)
276 AC_DEFINE_NOAUTOHEADER(HAVE_SYS_ERRLIST)
277 AC_DEFINE_NOAUTOHEADER(HAVE_SYS_NERR)
281 if test -z "${setobjs}"; then
285 # Handle VxWorks configuration specially, since on VxWorks the
286 # libraries are actually on the target board, not in the file
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"
292 basename | getpagesize | insque | random | strcasecmp)
294 strncasecmp | strdup | vfork | waitpid | vasprintf)
297 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
298 AC_DEFINE_UNQUOTED($n)
303 # VxWorks doesn't provide any of the variables in $vars, so we
304 # don't have to check them here.
306 # Of the functions in $checkfuncs, VxWorks only has strerror.
307 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
315 if test -z "${setobjs}"; then
320 # The Cygwin library actually uses a couple of files from
321 # libiberty when it is built. If we are building a native
322 # Cygwin, and we run the tests, we will appear to have these
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.
327 # We handle this by removing the functions the winsup library
328 # provides from our shell variables, so that they appear to be
331 # DJ - only if we're *building* cygwin, not just building *with* cygwin
333 if test -n "${with_target_subdir}"
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//'`"
343 # Under mingw32, sys_nerr and sys_errlist exist, but they are
344 # macros, so the test below won't find them.
345 libiberty_cv_var_sys_nerr=yes
346 libiberty_cv_var_sys_errlist=yes
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
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.
357 libiberty_cv_var_sys_nerr=yes
358 libiberty_cv_var_sys_errlist=yes
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
365 ac_cv_func_vfork_works=yes
370 # We haven't set the list of objects yet. Use the standard autoconf
371 # tests. This will only work if the compiler works.
373 AC_REPLACE_FUNCS($funcs)
374 libiberty_AC_FUNC_C_ALLOCA
376 if test $ac_cv_func_vfork_works = no; then
377 LIBOBJS="$LIBOBJS vfork.o"
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)
385 AC_CHECK_FUNCS(_doprnt)
389 AC_MSG_CHECKING([for $v])
390 AC_CACHE_VAL(libiberty_cv_var_$v,
391 [AC_TRY_LINK([int *p;], [extern int $v []; p = &$v;],
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
396 n=HAVE_`echo $v | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
397 AC_DEFINE_UNQUOTED($n)
402 AC_CHECK_FUNCS($checkfuncs)
405 libiberty_AC_FUNC_STRNCMP
407 # Install a library built with a cross compiler in $(tooldir) rather
409 if test -z "${with_cross_host}"; then
414 AC_SUBST(INSTALL_DEST)
416 # We need multilib support, but only if configuring for the target.
417 AC_OUTPUT(Makefile testsuite/Makefile,
418 [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
419 if test -n "$CONFIG_FILES"; then
420 if test -n "${with_target_subdir}"; then
421 # FIXME: We shouldn't need to set ac_file
423 . ${libiberty_topdir}/config-ml.in
429 with_target_subdir=${with_target_subdir}
430 with_multisubdir=${with_multisubdir}
431 ac_configure_args="--enable-multilib ${ac_configure_args}"
432 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
433 libiberty_topdir=${libiberty_topdir}