]> git.ipfire.org Git - thirdparty/gcc.git/blame - libiberty/configure.in
* testsuite_flags.in (--build-includes): backward, not backwards.
[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
29AC_CANONICAL_HOST
30
31dnl When we start using automake:
32dnl AM_INIT_AUTOMAKE(libiberty, 1.0)
33
34dnl These must be called before AM_PROG_LIBTOOL, because it may want
35dnl to call AC_CHECK_PROG.
36AC_CHECK_TOOL(AR, ar)
37AC_CHECK_TOOL(RANLIB, ranlib, :)
38
3affd5f0
JL
39LIB_AC_PROG_CC
40
41AC_ISC_POSIX
d1209685
ZW
42AC_C_CONST
43AC_C_INLINE
3affd5f0
JL
44
45dnl When we start using libtool:
46dnl Default to a non shared library. This may be overridden by the
47dnl configure option --enable-shared.
48dnl AM_DISABLE_SHARED
49
50dnl When we start using libtool:
51dnl AM_PROG_LIBTOOL
52
53dnl When we start using automake:
54dnl AM_CONFIG_HEADER(config.h:config.in)
55AC_CONFIG_HEADER(config.h:config.in)
56
57dnl When we start using automake:
58dnl AM_MAINTAINER_MODE
dd8f3ed5 59dnl AC_EXEEXT
3affd5f0
JL
60
61dnl When we start using automake:
62dnl AM_PROG_INSTALL
63AC_PROG_INSTALL
6599da04
JM
64
65. ${srcdir}/config.table
66host_makefile_frag=${frag}
3affd5f0
JL
67AC_SUBST_FILE(host_makefile_frag)
68
69# It's OK to check for header files. Although the compiler may not be
70# able to link anything, it had better be able to at least compile
71# something.
c6451ce1 72AC_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)
a6458d1d 73AC_HEADER_SYS_WAIT
c6451ce1 74AC_HEADER_TIME
6599da04 75
3b58c099
MS
76libiberty_AC_DECLARE_ERRNO
77
3affd5f0
JL
78# This is the list of functions which libiberty will provide if they
79# are not available on the host.
80
81funcs="asprintf"
82funcs="$funcs atexit"
83funcs="$funcs basename"
84funcs="$funcs bcmp"
85funcs="$funcs bcopy"
dac45916 86funcs="$funcs bsearch"
3affd5f0 87funcs="$funcs bzero"
a9acf741 88funcs="$funcs calloc"
3affd5f0
JL
89funcs="$funcs clock"
90funcs="$funcs getcwd"
91funcs="$funcs getpagesize"
92funcs="$funcs index"
93funcs="$funcs insque"
94funcs="$funcs memchr"
95funcs="$funcs memcmp"
96funcs="$funcs memcpy"
97funcs="$funcs memmove"
98funcs="$funcs memset"
687361c8 99funcs="$funcs mkstemps"
9eb4080f 100funcs="$funcs putenv"
3affd5f0
JL
101funcs="$funcs random"
102funcs="$funcs rename"
103funcs="$funcs rindex"
9eb4080f 104funcs="$funcs setenv"
3affd5f0
JL
105funcs="$funcs sigsetmask"
106funcs="$funcs strcasecmp"
107funcs="$funcs strchr"
108funcs="$funcs strdup"
109funcs="$funcs strncasecmp"
110funcs="$funcs strrchr"
111funcs="$funcs strstr"
112funcs="$funcs strtod"
113funcs="$funcs strtol"
114funcs="$funcs strtoul"
115funcs="$funcs tmpnam"
116funcs="$funcs vasprintf"
117funcs="$funcs vfprintf"
118funcs="$funcs vprintf"
119funcs="$funcs vsprintf"
120funcs="$funcs waitpid"
121
122# Also in the old function.def file: alloca, vfork, getopt.
123
124vars="sys_errlist sys_nerr sys_siglist"
125
90e72e20 126checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday"
3affd5f0
JL
127
128# These are neither executed nor required, but they help keep
129# autoheader happy without adding a bunch of text to acconfig.h.
130if test "x" = "y"; then
dac45916
MS
131 AC_CHECK_FUNCS(asprintf atexit basename bcmp bcopy bsearch bzero calloc clock)
132 AC_CHECK_FUNCS(getcwd getpagesize index insque mkstemps memchr memcmp memcpy)
133 AC_CHECK_FUNCS(memmove memset putenv random rename rindex sigsetmask)
134 AC_CHECK_FUNCS(strcasecmp setenv strchr strdup strncasecmp strrchr strstr)
135 AC_CHECK_FUNCS(strtod strtol strtoul tmpnam vasprintf vfprintf vprintf)
136 AC_CHECK_FUNCS(vsprintf waitpid getrusage on_exit psignal strerror strsignal)
137 AC_CHECK_FUNCS(sysconf times sbrk gettimeofday)
d1209685
ZW
138 AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
139 AC_DEFINE(HAVE_SYS_NERR, 1, [Define if you have the sys_nerr variable.])
140 AC_DEFINE(HAVE_SYS_SIGLIST, 1, [Define if you have the sys_siglist variable.])
6599da04
JM
141fi
142
3affd5f0
JL
143# For each of these functions, if the host does not provide the
144# function we want to put FN.o in LIBOBJS, and if the host does
b548dffb 145# provide the function, we want to define HAVE_FN in config.h.
3affd5f0
JL
146
147setobjs=
7c72138a 148CHECK=
3affd5f0
JL
149if test -n "${with_target_subdir}"; then
150
ca6b370d 151 # We are being configured as a target library. AC_REPLACE_FUNCS
3affd5f0 152 # may not work correctly, because the compiler may not be able to
ca6b370d
JL
153 # link executables. Note that we may still be being configured
154 # native.
3affd5f0
JL
155
156 # If we are being configured for newlib, we know which functions
157 # newlib provide and which ones we will be expected to provide.
158
159 if test "x${with_newlib}" = "xyes"; then
ca6b370d 160 LIBOBJS="asprintf.o basename.o insque.o random.o strdup.o vasprintf.o"
3affd5f0
JL
161
162 for f in $funcs; do
163 case "$f" in
ca6b370d 164 asprintf | basename | insque | random | strdup | vasprintf)
3affd5f0
JL
165 ;;
166 *)
167 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
168 AC_DEFINE_UNQUOTED($n)
169 ;;
170 esac
171 done
172
173 # newlib doesnt provide any of the variables in $vars, so we
174 # dont have to check them here.
175
ca6b370d 176 # Of the functions in $checkfuncs, newlib only has strerror.
d1209685 177 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
3affd5f0
JL
178
179 setobjs=yes
180
181 fi
7c72138a
TT
182
183else
184
185 # Not a target library, so we set things up to run the test suite.
186 CHECK=check-cplus-dem
187
3affd5f0
JL
188fi
189
7c72138a
TT
190AC_SUBST(CHECK)
191
3affd5f0
JL
192if test -z "${setobjs}"; then
193 case "${host}" in
194
195 *-*-vxworks*)
196 # Handle VxWorks configuration specially, since on VxWorks the
197 # libraries are actually on the target board, not in the file
198 # system.
199 LIBOBJS="basename.o getpagesize.o insque.o random.o strcasecmp.o"
200 LIBOBJS="$LIBOBJS strncasecmp.o strdup.o vfork.o waitpid.o vasprintf.o"
201 for f in $funcs; do
202 case "$f" in
203 basename | getpagesize | insque | random | strcasecmp)
204 ;;
205 strncasecmp | strdup | vfork | waitpid | vasprintf)
206 ;;
207 *)
208 n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
209 AC_DEFINE_UNQUOTED($n)
210 ;;
211 esac
212 done
213
214 # VxWorks doesn't provide any of the variables in $vars, so we
215 # don't have to check them here.
216
217 # Of the functions in $checkfuncs, VxWorks only has strerror.
d1209685 218 AC_DEFINE_NOAUTOHEADER(HAVE_STRERROR)
3affd5f0
JL
219
220 setobjs=yes
221 ;;
222
223 esac
224fi
225
226if test -z "${setobjs}"; then
227
228 case "${host}" in
229
dd8f3ed5
GN
230 *-*-cygwin*)
231 # The Cygwin library actually uses a couple of files from
3affd5f0 232 # libiberty when it is built. If we are building a native
dd8f3ed5 233 # Cygwin, and we run the tests, we will appear to have these
3affd5f0
JL
234 # files. However, when we go on to build winsup, we will wind up
235 # with a library which does not have the files, since they should
236 # have come from libiberty.
237
238 # We handle this by removing the functions the winsup library
239 # provides from our shell variables, so that they appear to be
240 # missing.
241
2f31ed7e
DD
242 # DJ - only if we're *building* cygwin, not just building *with* cygwin
243
244 if test -n "${with_target_subdir}"
245 then
246 funcs="`echo $funcs | sed -e 's/random//'`"
247 LIBOBJS="$LIBOBJS random.o"
248 vars="`echo $vars | sed -e 's/sys_siglist//'`"
249 checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`"
250 fi
3affd5f0
JL
251 ;;
252
253 *-*-mingw32*)
254 # Under mingw32, sys_nerr and sys_errlist exist, but they are
255 # macros, so the test below won't find them.
d1209685
ZW
256 libiberty_cv_var_sys_nerr=yes
257 libiberty_cv_var_sys_errlist=yes
3affd5f0
JL
258 ;;
259
89f602a7
MK
260 *-*-uwin*)
261 # Under some versions of uwin, vfork is notoriously buggy and the test
262 # can hang configure; on other versions, vfork exists just as a stub.
263 # FIXME: This should be removed once vfork in uwin's runtime is fixed.
264 ac_cv_func_vfork_works=no
62133b5e
MK
265 # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are
266 # macros (actually, these are imported from a DLL, but the end effect
267 # is the same), so the test below won't find them.
d1209685
ZW
268 libiberty_cv_var_sys_nerr=yes
269 libiberty_cv_var_sys_errlist=yes
89f602a7
MK
270 ;;
271
3affd5f0
JL
272 esac
273
274 # We haven't set the list of objects yet. Use the standard autoconf
275 # tests. This will only work if the compiler works.
276 AC_PROG_CC_WORKS
277 AC_REPLACE_FUNCS($funcs)
b548dffb 278 libiberty_AC_FUNC_C_ALLOCA
3affd5f0
JL
279 AC_FUNC_VFORK
280 if test $ac_cv_func_vfork_works = no; then
281 LIBOBJS="$LIBOBJS vfork.o"
282 fi
283 for v in $vars; do
284 AC_MSG_CHECKING([for $v])
285 AC_CACHE_VAL(libiberty_cv_var_$v,
286 [AC_TRY_LINK([int *p;], [extern int $v; p = &$v;],
287 [eval "libiberty_cv_var_$v=yes"],
288 [eval "libiberty_cv_var_$v=no"])])
289 if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then
290 AC_MSG_RESULT(yes)
291 n=HAVE_`echo $v | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
292 AC_DEFINE_UNQUOTED($n)
6599da04 293 else
3affd5f0 294 AC_MSG_RESULT(no)
6599da04 295 fi
3affd5f0
JL
296 done
297 AC_CHECK_FUNCS($checkfuncs)
298fi
299
a9266bfa
KG
300libiberty_AC_FUNC_STRNCMP
301
3affd5f0
JL
302# Install a library built with a cross compiler in $(tooldir) rather
303# than $(libdir).
ca6b370d 304if test -z "${with_cross_host}"; then
3affd5f0
JL
305 INSTALL_DEST=libdir
306else
307 INSTALL_DEST=tooldir
6599da04 308fi
3affd5f0
JL
309AC_SUBST(INSTALL_DEST)
310
311# We need multilib support, but only if configuring for the target.
7c72138a 312AC_OUTPUT(Makefile testsuite/Makefile,
3affd5f0
JL
313[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
314if test -n "$CONFIG_FILES"; then
315 if test -n "${with_target_subdir}"; then
316 # FIXME: We shouldn't need to set ac_file
317 ac_file=Makefile
318 . ${libiberty_topdir}/config-ml.in
319 fi
320fi],
321srcdir=${srcdir}
322host=${host}
323target=${target}
324with_target_subdir=${with_target_subdir}
325with_multisubdir=${with_multisubdir}
326ac_configure_args="--enable-multilib ${ac_configure_args}"
327CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
328libiberty_topdir=${libiberty_topdir}
329)