]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/aclocal.m4
locale_facets.h (messages): Move ctor, dtor definitions to..
[thirdparty/gcc.git] / libstdc++-v3 / aclocal.m4
1 dnl aclocal.m4 generated automatically by aclocal 1.4-p5
2
3 dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7
8 dnl This program is distributed in the hope that it will be useful,
9 dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10 dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11 dnl PARTICULAR PURPOSE.
12
13 dnl
14 dnl Initialize basic configure bits, set toplevel_srcdir for Makefiles.
15 dnl
16 dnl GLIBCPP_TOPREL_CONFIGURE
17 AC_DEFUN(GLIBCPP_TOPREL_CONFIGURE, [
18 dnl Default to --enable-multilib (this is also passed by default
19 dnl from the ubercommon-top-level configure)
20 AC_ARG_ENABLE(multilib,
21 [ --enable-multilib build hella library versions (default)],
22 [case "${enableval}" in
23 yes) multilib=yes ;;
24 no) multilib=no ;;
25 *) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
26 esac], [multilib=yes])dnl
27
28 # When building with srcdir == objdir, links to the source files will
29 # be created in directories within the target_subdir. We have to
30 # adjust toplevel_srcdir accordingly, so that configure finds
31 # install-sh and other auxiliary files that live in the top-level
32 # source directory.
33 if test "${srcdir}" = "."; then
34 if test -z "${with_target_subdir}"; then
35 toprel=".."
36 else
37 if test "${with_target_subdir}" != "."; then
38 toprel="${with_multisrctop}../.."
39 else
40 toprel="${with_multisrctop}.."
41 fi
42 fi
43 else
44 toprel=".."
45 fi
46 AC_CONFIG_AUX_DIR(${srcdir}/$toprel)
47 toplevel_srcdir=\${top_srcdir}/$toprel
48 AC_SUBST(toplevel_srcdir)
49 ])
50
51 dnl
52 dnl Initialize the rest of the library configury.
53 dnl
54 dnl GLIBCPP_CONFIGURE
55 AC_DEFUN(GLIBCPP_CONFIGURE, [
56 # Export build and source directories.
57 # These need to be absolute paths, yet at the same time need to
58 # canonicalize only relative paths, because then amd will not unmount
59 # drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
60 glibcpp_builddir=`${PWDCMD-pwd}`
61 case $srcdir in
62 [\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
63 *) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
64 esac
65 AC_SUBST(glibcpp_builddir)
66 AC_SUBST(glibcpp_srcdir)
67
68 dnl This is here just to satisfy automake.
69 ifelse(not,equal,[AC_CONFIG_AUX_DIR(..)])
70
71 AC_PROG_AWK
72 # Will set LN_S to either 'ln -s' or 'ln'. With autoconf 2.5x, can also
73 # be 'cp -p' if linking isn't available. Uncomment the next line to
74 # force a particular method.
75 #ac_cv_prog_LN_S='cp -p'
76 AC_PROG_LN_S
77
78 # We use these options to decide which functions to include.
79 AC_ARG_WITH(target-subdir,
80 [ --with-target-subdir=SUBDIR
81 configuring in a subdirectory])
82 AC_ARG_WITH(cross-host,
83 [ --with-cross-host=HOST configuring with a cross compiler])
84
85 glibcpp_basedir=$srcdir/$toprel/$1/libstdc++-v3
86 AC_SUBST(glibcpp_basedir)
87
88 # Never versions of autoconf add an underscore to these functions.
89 # Prevent future problems ...
90 ifdef([AC_PROG_CC_G],[],[define([AC_PROG_CC_G],defn([_AC_PROG_CC_G]))])
91 ifdef([AC_PROG_CC_GNU],[],[define([AC_PROG_CC_GNU],defn([_AC_PROG_CC_GNU]))])
92 ifdef([AC_PROG_CXX_G],[],[define([AC_PROG_CXX_G],defn([_AC_PROG_CXX_G]))])
93 ifdef([AC_PROG_CXX_GNU],[],[define([AC_PROG_CXX_GNU],defn([_AC_PROG_CXX_GNU]))])
94
95 # AC_PROG_CC
96 # FIXME: We temporarily define our own version of AC_PROG_CC. This is
97 # copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We
98 # are probably using a cross compiler, which will not be able to fully
99 # link an executable. This is addressed in later versions of autoconf.
100
101 AC_DEFUN(LIB_AC_PROG_CC,
102 [AC_BEFORE([$0], [AC_PROG_CPP])dnl
103 dnl Fool anybody using AC_PROG_CC.
104 AC_PROVIDE([AC_PROG_CC])
105 AC_CHECK_PROG(CC, gcc, gcc)
106 if test -z "$CC"; then
107 AC_CHECK_PROG(CC, cc, cc, , , /usr/ucb/cc)
108 test -z "$CC" && AC_MSG_ERROR([no acceptable cc found in \$PATH])
109 fi
110
111 AC_PROG_CC_GNU
112
113 if test $ac_cv_prog_gcc = yes; then
114 GCC=yes
115 dnl Check whether -g works, even if CFLAGS is set, in case the package
116 dnl plays around with CFLAGS (such as to build both debugging and
117 dnl normal versions of a library), tasteless as that idea is.
118 ac_test_CFLAGS="${CFLAGS+set}"
119 ac_save_CFLAGS="$CFLAGS"
120 CFLAGS=
121 AC_PROG_CC_G
122 if test "$ac_test_CFLAGS" = set; then
123 CFLAGS="$ac_save_CFLAGS"
124 elif test $ac_cv_prog_cc_g = yes; then
125 CFLAGS="-g -O2"
126 else
127 CFLAGS="-O2"
128 fi
129 else
130 GCC=
131 test "${CFLAGS+set}" = set || CFLAGS="-g"
132 fi
133 ])
134
135 LIB_AC_PROG_CC
136
137 # Likewise for AC_PROG_CXX. We can't just call it directly because g++
138 # will try to link in libstdc++.
139 AC_DEFUN(LIB_AC_PROG_CXX,
140 [AC_BEFORE([$0], [AC_PROG_CXXCPP])dnl
141 dnl Fool anybody using AC_PROG_CXX.
142 AC_PROVIDE([AC_PROG_CXX])
143 # Use glibcpp_CXX so that we do not cause CXX to be cached with the
144 # flags that come in CXX while configuring libstdc++. They're different
145 # from those used for all other target libraries. If CXX is set in
146 # the environment, respect that here.
147 glibcpp_CXX=$CXX
148 AC_CHECK_PROGS(glibcpp_CXX, $CCC c++ g++ gcc CC cxx cc++, gcc)
149 AC_SUBST(glibcpp_CXX)
150 CXX=$glibcpp_CXX
151 test -z "$glibcpp_CXX" && AC_MSG_ERROR([no acceptable c++ found in \$PATH])
152
153 AC_PROG_CXX_GNU
154
155 if test $ac_cv_prog_gxx = yes; then
156 GXX=yes
157 dnl Check whether -g works, even if CXXFLAGS is set, in case the package
158 dnl plays around with CXXFLAGS (such as to build both debugging and
159 dnl normal versions of a library), tasteless as that idea is.
160 ac_test_CXXFLAGS="${CXXFLAGS+set}"
161 ac_save_CXXFLAGS="$CXXFLAGS"
162 CXXFLAGS=
163 AC_PROG_CXX_G
164 if test "$ac_test_CXXFLAGS" = set; then
165 CXXFLAGS="$ac_save_CXXFLAGS"
166 elif test $ac_cv_prog_cxx_g = yes; then
167 CXXFLAGS="-g -O2"
168 else
169 CXXFLAGS="-O2"
170 fi
171 else
172 GXX=
173 test "${CXXFLAGS+set}" = set || CXXFLAGS="-g"
174 fi
175 ])
176
177 LIB_AC_PROG_CXX
178
179 # For directory versioning (e.g., headers) and other variables.
180 AC_MSG_CHECKING([for GCC version number])
181 gcc_version=`$glibcpp_CXX -dumpversion`
182 AC_MSG_RESULT($gcc_version)
183
184 # For some reason, gettext needs this.
185 AC_ISC_POSIX
186
187 AC_CHECK_TOOL(AS, as)
188 AC_CHECK_TOOL(AR, ar)
189 AC_CHECK_TOOL(RANLIB, ranlib, ranlib-not-found-in-path-error)
190 AC_PROG_INSTALL
191
192 AM_MAINTAINER_MODE
193
194 # We need AC_EXEEXT to keep automake happy in cygnus mode. However,
195 # at least currently, we never actually build a program, so we never
196 # need to use $(EXEEXT). Moreover, the test for EXEEXT normally
197 # fails, because we are probably configuring with a cross compiler
198 # which can't create executables. So we include AC_EXEEXT to keep
199 # automake happy, but we don't execute it, since we don't care about
200 # the result.
201 if false; then
202 # autoconf 2.50 runs AC_EXEEXT by default, and the macro expands
203 # to nothing, so nothing would remain between `then' and `fi' if it
204 # were not for the `:' below.
205 :
206 AC_EXEEXT
207 fi
208
209 case [$]{glibcpp_basedir} in
210 /* | [A-Za-z]:[\\/]*) libgcj_flagbasedir=[$]{glibcpp_basedir} ;;
211 *) glibcpp_flagbasedir='[$](top_builddir)/'[$]{glibcpp_basedir} ;;
212 esac
213
214 # Find platform-specific directories containing configuration info. In
215 # addition to possibly modifying the same flags, it also sets up symlinks.
216 GLIBCPP_CHECK_TARGET
217 ])
218
219
220 dnl
221 dnl Check to see if g++ can compile this library, and if so, if any version-
222 dnl specific precautions need to be taken.
223 dnl
224 dnl GLIBCPP_CHECK_COMPILER_VERSION
225 AC_DEFUN(GLIBCPP_CHECK_COMPILER_VERSION, [
226 if test ! -f stamp-sanity-compiler; then
227 AC_MSG_CHECKING([for g++ that will successfully compile libstdc++-v3])
228 AC_LANG_SAVE
229 AC_LANG_CPLUSPLUS
230 AC_TRY_COMPILE(, [
231 #if __GNUC__ < 3
232 not_ok
233 #endif
234 ], gpp_satisfactory=yes, AC_MSG_ERROR([please upgrade to GCC 3.0 or above]))
235 AC_LANG_RESTORE
236 AC_MSG_RESULT($gpp_satisfactory)
237 touch stamp-sanity-compiler
238 fi
239 ])
240
241
242 dnl
243 dnl Tests for newer compiler features, or features that are present in newer
244 dnl compiler versions but not older compiler versions still in use, should
245 dnl be placed here.
246 dnl
247 dnl Define WERROR='-Werror' if requested and possible; g++'s that lack the
248 dnl new inlining code or the new system_header pragma will die on -Werror.
249 dnl Leave it out by default and use maint-mode to use it.
250 dnl
251 dnl Define SECTION_FLAGS='-ffunction-sections -fdata-sections' if
252 dnl compiler supports it and the user has not requested debug mode.
253 dnl
254 dnl GLIBCPP_CHECK_COMPILER_FEATURES
255 AC_DEFUN(GLIBCPP_CHECK_COMPILER_FEATURES, [
256 # All these tests are for C++; save the language and the compiler flags.
257 # The CXXFLAGS thing is suspicious, but based on similar bits previously
258 # found in GLIBCPP_CONFIGURE.
259 AC_LANG_SAVE
260 AC_LANG_CPLUSPLUS
261 ac_test_CXXFLAGS="${CXXFLAGS+set}"
262 ac_save_CXXFLAGS="$CXXFLAGS"
263
264 # Check for maintainer-mode bits.
265 if test x"$USE_MAINTAINER_MODE" = xno; then
266 WERROR=''
267 else
268 WERROR='-Werror'
269 fi
270
271 # Check for -ffunction-sections -fdata-sections
272 AC_MSG_CHECKING([for g++ that supports -ffunction-sections -fdata-sections])
273 CXXFLAGS='-Werror -ffunction-sections -fdata-sections'
274 AC_TRY_COMPILE(, [int foo;
275 ], [ac_fdsections=yes], [ac_fdsections=no])
276 if test "$ac_test_CXXFLAGS" = set; then
277 CXXFLAGS="$ac_save_CXXFLAGS"
278 else
279 # this is the suspicious part
280 CXXFLAGS=''
281 fi
282 if test x"$ac_fdsections" = x"yes"; then
283 SECTION_FLAGS='-ffunction-sections -fdata-sections'
284 fi
285 AC_MSG_RESULT($ac_fdsections)
286
287 AC_LANG_RESTORE
288 AC_SUBST(WERROR)
289 AC_SUBST(SECTION_FLAGS)
290 ])
291
292
293 dnl
294 dnl If GNU ld is in use, check to see if tricky linker opts can be used. If
295 dnl the native linker is in use, all variables will be defined to something
296 dnl safe (like an empty string).
297 dnl
298 dnl Define SECTION_LDFLAGS='-Wl,--gc-sections' if possible.
299 dnl Define OPT_LDFLAGS='-Wl,-O1' if possible.
300 dnl Define LD, with_gnu_ld, and (possibly) glibcpp_gnu_ld_version as
301 dnl side-effects of testing.
302 dnl
303 dnl GLIBCPP_CHECK_LINKER_FEATURES
304 AC_DEFUN(GLIBCPP_CHECK_LINKER_FEATURES, [
305 # If we're not using GNU ld, then there's no point in even trying these
306 # tests. Check for that first. We should have already tested for gld
307 # by now (in libtool), but require it now just to be safe...
308 test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS=''
309 test -z "$OPT_LDFLAGS" && OPT_LDFLAGS=''
310 AC_REQUIRE([AC_PROG_LD])
311
312 # The name set by libtool depends on the version of libtool. Shame on us
313 # for depending on an impl detail, but c'est la vie. Older versions used
314 # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on
315 # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually
316 # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't
317 # set (hence we're using an older libtool), then set it.
318 if test x${with_gnu_ld+set} != xset; then
319 if test x${ac_cv_prog_gnu_ld+set} != xset; then
320 # We got through "ac_require(ac_prog_ld)" and still not set? Huh?
321 with_gnu_ld=no
322 else
323 with_gnu_ld=$ac_cv_prog_gnu_ld
324 fi
325 fi
326
327 # Start by getting the version number. I think the libtool test already
328 # does some of this, but throws away the result.
329 changequote(,)
330 ldver=`$LD --version 2>/dev/null | head -1 | \
331 sed -e 's/GNU ld version \([0-9.][0-9.]*\).*/\1/'`
332 changequote([,])
333 glibcpp_gnu_ld_version=`echo $ldver | \
334 $AWK -F. '{ if (NF<3) [$]3=0; print ([$]1*100+[$]2)*100+[$]3 }'`
335
336 # Set --gc-sections.
337 if test "$with_gnu_ld" = "notbroken"; then
338 # GNU ld it is! Joy and bunny rabbits!
339
340 # All these tests are for C++; save the language and the compiler flags.
341 # Need to do this so that g++ won't try to link in libstdc++
342 ac_test_CFLAGS="${CFLAGS+set}"
343 ac_save_CFLAGS="$CFLAGS"
344 CFLAGS='-x c++ -Wl,--gc-sections'
345
346 # Check for -Wl,--gc-sections
347 # XXX This test is broken at the moment, as symbols required for
348 # linking are now in libsupc++ (not built yet.....). In addition,
349 # this test has cored on solaris in the past. In addition,
350 # --gc-sections doesn't really work at the moment (keeps on discarding
351 # used sections, first .eh_frame and now some of the glibc sections for
352 # iconv). Bzzzzt. Thanks for playing, maybe next time.
353 AC_MSG_CHECKING([for ld that supports -Wl,--gc-sections])
354 AC_TRY_RUN([
355 int main(void)
356 {
357 try { throw 1; }
358 catch (...) { };
359 return 0;
360 }
361 ], [ac_sectionLDflags=yes],[ac_sectionLDflags=no], [ac_sectionLDflags=yes])
362 if test "$ac_test_CFLAGS" = set; then
363 CFLAGS="$ac_save_CFLAGS"
364 else
365 # this is the suspicious part
366 CFLAGS=''
367 fi
368 if test "$ac_sectionLDflags" = "yes"; then
369 SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS"
370 fi
371 AC_MSG_RESULT($ac_sectionLDflags)
372 fi
373
374 # Set linker optimization flags.
375 if test x"$with_gnu_ld" = x"yes"; then
376 OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS"
377 fi
378
379 AC_SUBST(SECTION_LDFLAGS)
380 AC_SUBST(OPT_LDFLAGS)
381 ])
382
383
384 dnl
385 dnl Check to see if the (math function) argument passed is
386 dnl declared when using the c++ compiler
387 dnl ASSUMES argument is a math function with ONE parameter
388 dnl
389 dnl GLIBCPP_CHECK_MATH_DECL_1
390 AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_1, [
391 AC_MSG_CHECKING([for $1 declaration])
392 if test x${glibcpp_cv_func_$1_use+set} != xset; then
393 AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
394 AC_LANG_SAVE
395 AC_LANG_CPLUSPLUS
396 AC_TRY_COMPILE([#include <math.h>
397 #ifdef HAVE_IEEEFP_H
398 #include <ieeefp.h>
399 #endif
400 ],
401 [ $1(0);],
402 [glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
403 AC_LANG_RESTORE
404 ])
405 fi
406 AC_MSG_RESULT($glibcpp_cv_func_$1_use)
407 ])
408
409 dnl
410 dnl Check to see if the (math function) argument passed is
411 dnl 1) declared when using the c++ compiler
412 dnl 2) has "C" linkage
413 dnl 3) if not, see if 1) and 2) for argument prepended with '_'
414 dnl
415 dnl Define HAVE_CARGF etc if "cargf" is declared and links
416 dnl
417 dnl argument 1 is name of function to check
418 dnl
419 dnl ASSUMES argument is a math function with ONE parameter
420 dnl
421 dnl GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1
422 AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1, [
423 GLIBCPP_CHECK_MATH_DECL_1($1)
424 if test x$glibcpp_cv_func_$1_use = x"yes"; then
425 AC_CHECK_FUNCS($1)
426 else
427 GLIBCPP_CHECK_MATH_DECL_1(_$1)
428 if test x$glibcpp_cv_func__$1_use = x"yes"; then
429 AC_CHECK_FUNCS(_$1)
430 fi
431 fi
432 ])
433
434
435 dnl
436 dnl Like GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1, but does a bunch of
437 dnl of functions at once. It's an all-or-nothing check -- either
438 dnl HAVE_XYZ is defined for each of the functions, or for none of them.
439 dnl Doing it this way saves significant configure time.
440 AC_DEFUN(GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1, [
441 AC_MSG_CHECKING([for $1 functions])
442 AC_CACHE_VAL(glibcpp_cv_func_$2_use, [
443 AC_LANG_SAVE
444 AC_LANG_CPLUSPLUS
445 AC_TRY_COMPILE([#include <math.h>],
446 [ `for x in $3; do echo "$x (0);"; done` ],
447 [glibcpp_cv_func_$2_use=yes],
448 [glibcpp_cv_func_$2_use=no])
449 AC_LANG_RESTORE])
450 AC_MSG_RESULT($glibcpp_cv_func_$2_use)
451 if test x$glibcpp_cv_func_$2_use = x"yes"; then
452 AC_CHECK_FUNCS($3)
453 fi
454 ])
455
456 dnl
457 dnl Check to see if the (math function) argument passed is
458 dnl declared when using the c++ compiler
459 dnl ASSUMES argument is a math function with TWO parameters
460 dnl
461 dnl GLIBCPP_CHECK_MATH_DECL_2
462 AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_2, [
463 AC_MSG_CHECKING([for $1 declaration])
464 if test x${glibcpp_cv_func_$1_use+set} != xset; then
465 AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
466 AC_LANG_SAVE
467 AC_LANG_CPLUSPLUS
468 AC_TRY_COMPILE([#include <math.h>],
469 [ $1(0, 0);],
470 [glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
471 AC_LANG_RESTORE
472 ])
473 fi
474 AC_MSG_RESULT($glibcpp_cv_func_$1_use)
475 ])
476
477 dnl
478 dnl Check to see if the (math function) argument passed is
479 dnl 1) declared when using the c++ compiler
480 dnl 2) has "C" linkage
481 dnl
482 dnl Define HAVE_CARGF etc if "cargf" is declared and links
483 dnl
484 dnl argument 1 is name of function to check
485 dnl
486 dnl ASSUMES argument is a math function with TWO parameters
487 dnl
488 dnl GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2
489 AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2, [
490 GLIBCPP_CHECK_MATH_DECL_2($1)
491 if test x$glibcpp_cv_func_$1_use = x"yes"; then
492 AC_CHECK_FUNCS($1)
493 else
494 GLIBCPP_CHECK_MATH_DECL_2(_$1)
495 if test x$glibcpp_cv_func__$1_use = x"yes"; then
496 AC_CHECK_FUNCS(_$1)
497 fi
498 fi
499 ])
500
501
502 dnl
503 dnl Check to see if the (math function) argument passed is
504 dnl declared when using the c++ compiler
505 dnl ASSUMES argument is a math function with THREE parameters
506 dnl
507 dnl GLIBCPP_CHECK_MATH_DECL_3
508 AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_3, [
509 AC_MSG_CHECKING([for $1 declaration])
510 if test x${glibcpp_cv_func_$1_use+set} != xset; then
511 AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
512 AC_LANG_SAVE
513 AC_LANG_CPLUSPLUS
514 AC_TRY_COMPILE([#include <math.h>],
515 [ $1(0, 0, 0);],
516 [glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
517 AC_LANG_RESTORE
518 ])
519 fi
520 AC_MSG_RESULT($glibcpp_cv_func_$1_use)
521 ])
522
523 dnl
524 dnl Check to see if the (math function) argument passed is
525 dnl 1) declared when using the c++ compiler
526 dnl 2) has "C" linkage
527 dnl
528 dnl Define HAVE_CARGF etc if "cargf" is declared and links
529 dnl
530 dnl argument 1 is name of function to check
531 dnl
532 dnl ASSUMES argument is a math function with THREE parameters
533 dnl
534 dnl GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_3
535 AC_DEFUN(GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_3, [
536 GLIBCPP_CHECK_MATH_DECL_3($1)
537 if test x$glibcpp_cv_func_$1_use = x"yes"; then
538 AC_CHECK_FUNCS($1)
539 else
540 GLIBCPP_CHECK_MATH_DECL_3(_$1)
541 if test x$glibcpp_cv_func__$1_use = x"yes"; then
542 AC_CHECK_FUNCS(_$1)
543 fi
544 fi
545 ])
546
547
548 dnl
549 dnl Check to see if the (stdlib function) argument passed is
550 dnl 1) declared when using the c++ compiler
551 dnl 2) has "C" linkage
552 dnl
553 dnl argument 1 is name of function to check
554 dnl
555 dnl ASSUMES argument is a math function with TWO parameters
556 dnl
557 dnl GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_2
558 AC_DEFUN(GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_2, [
559 AC_MSG_CHECKING([for $1 declaration])
560 if test x${glibcpp_cv_func_$1_use+set} != xset; then
561 AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
562 AC_LANG_SAVE
563 AC_LANG_CPLUSPLUS
564 AC_TRY_COMPILE([#include <stdlib.h>],
565 [ $1(0, 0);],
566 [glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
567 AC_LANG_RESTORE
568 ])
569 fi
570 AC_MSG_RESULT($glibcpp_cv_func_$1_use)
571 if test x$glibcpp_cv_func_$1_use = x"yes"; then
572 AC_CHECK_FUNCS($1)
573 fi
574 ])
575
576
577 dnl
578 dnl Check to see if the (stdlib function) argument passed is
579 dnl 1) declared when using the c++ compiler
580 dnl 2) has "C" linkage
581 dnl
582 dnl argument 1 is name of function to check
583 dnl
584 dnl ASSUMES argument is a function with THREE parameters
585 dnl
586 dnl GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_3
587 AC_DEFUN(GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_3, [
588 AC_MSG_CHECKING([for $1 declaration])
589 if test x${glibcpp_cv_func_$1_use+set} != xset; then
590 AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
591 AC_LANG_SAVE
592 AC_LANG_CPLUSPLUS
593 AC_TRY_COMPILE([#include <stdlib.h>],
594 [ $1(0, 0, 0);],
595 [glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
596 AC_LANG_RESTORE
597 ])
598 fi
599 AC_MSG_RESULT($glibcpp_cv_func_$1_use)
600 if test x$glibcpp_cv_func_$1_use = x"yes"; then
601 AC_CHECK_FUNCS($1)
602 fi
603 ])
604
605 dnl
606 dnl Check to see if the (unistd function) argument passed is
607 dnl 1) declared when using the c++ compiler
608 dnl 2) has "C" linkage
609 dnl
610 dnl argument 1 is name of function to check
611 dnl
612 dnl ASSUMES argument is a function with ONE parameter
613 dnl
614 dnl GLIBCPP_CHECK_UNISTD_DECL_AND_LINKAGE_1
615 AC_DEFUN(GLIBCPP_CHECK_UNISTD_DECL_AND_LINKAGE_1, [
616 AC_MSG_CHECKING([for $1 declaration])
617 if test x${glibcpp_cv_func_$1_use+set} != xset; then
618 AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
619 AC_LANG_SAVE
620 AC_LANG_CPLUSPLUS
621 AC_TRY_COMPILE([#include <unistd.h>],
622 [ $1(0);],
623 [glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
624 AC_LANG_RESTORE
625 ])
626 fi
627 AC_MSG_RESULT($glibcpp_cv_func_$1_use)
628 if test x$glibcpp_cv_func_$1_use = x"yes"; then
629 AC_CHECK_FUNCS($1)
630 fi
631 ])
632
633 dnl
634 dnl Because the builtins are picky picky picky about the arguments they take,
635 dnl do an explict linkage tests here.
636 dnl Check to see if the (math function) argument passed is
637 dnl 1) declared when using the c++ compiler
638 dnl 2) has "C" linkage
639 dnl
640 dnl Define HAVE_CARGF etc if "cargf" is declared and links
641 dnl
642 dnl argument 1 is name of function to check
643 dnl
644 dnl ASSUMES argument is a math function with ONE parameter
645 dnl
646 dnl GLIBCPP_CHECK_BUILTIN_MATH_DECL_LINKAGE_1
647 AC_DEFUN(GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1, [
648 AC_MSG_CHECKING([for $1 declaration])
649 if test x${glibcpp_cv_func_$1_use+set} != xset; then
650 AC_CACHE_VAL(glibcpp_cv_func_$1_use, [
651 AC_LANG_SAVE
652 AC_LANG_CPLUSPLUS
653 AC_TRY_COMPILE([#include <math.h>],
654 [ $1(0);],
655 [glibcpp_cv_func_$1_use=yes], [glibcpp_cv_func_$1_use=no])
656 AC_LANG_RESTORE
657 ])
658 fi
659 AC_MSG_RESULT($glibcpp_cv_func_$1_use)
660 if test x$glibcpp_cv_func_$1_use = x"yes"; then
661 AC_MSG_CHECKING([for $1 linkage])
662 if test x${glibcpp_cv_func_$1_link+set} != xset; then
663 AC_CACHE_VAL(glibcpp_cv_func_$1_link, [
664 AC_TRY_LINK([#include <math.h>],
665 [ $1(0);],
666 [glibcpp_cv_func_$1_link=yes], [glibcpp_cv_func_$1_link=no])
667 ])
668 fi
669 AC_MSG_RESULT($glibcpp_cv_func_$1_link)
670 if test x$glibcpp_cv_func_$1_link = x"yes"; then
671 ac_tr_func=HAVE_`echo $1 | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
672 AC_DEFINE_UNQUOTED(${ac_tr_func})
673 fi
674 fi
675 ])
676
677
678 dnl
679 dnl Check to see what builtin math functions are supported
680 dnl
681 dnl check for __builtin_abs
682 dnl check for __builtin_fabsf
683 dnl check for __builtin_fabs
684 dnl check for __builtin_fabl
685 dnl check for __builtin_labs
686 dnl check for __builtin_sqrtf
687 dnl check for __builtin_sqrtl
688 dnl check for __builtin_sqrt
689 dnl check for __builtin_sinf
690 dnl check for __builtin_sin
691 dnl check for __builtin_sinl
692 dnl check for __builtin_cosf
693 dnl check for __builtin_cos
694 dnl check for __builtin_cosl
695 dnl
696 dnl GLIBCPP_CHECK_BUILTIN_MATH_SUPPORT
697 AC_DEFUN(GLIBCPP_CHECK_BUILTIN_MATH_SUPPORT, [
698 dnl Test for builtin math functions.
699 dnl These are made in gcc/c-common.c
700 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_abs)
701 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_fabsf)
702 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_fabs)
703 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_fabsl)
704 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_labs)
705
706 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sqrtf)
707 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sqrt)
708 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sqrtl)
709
710 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sinf)
711 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sin)
712 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_sinl)
713
714 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_cosf)
715 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_cos)
716 GLIBCPP_CHECK_BUILTIN_MATH_DECL_AND_LINKAGE_1(__builtin_cosl)
717
718 dnl There is, without a doubt, a more elegant way to have these
719 dnl names exported so that they won't be stripped out of acconfig.h by
720 dnl autoheader. I leave this as an exercise to somebody less frustrated
721 dnl than I.... please email the libstdc++ list if you can figure out a
722 dnl more elegant approach (see autoconf/acgen.m4 and specifically
723 dnl AC_CHECK_FUNC for things to steal.)
724 dummyvar=no
725 if test x$dummyvar = x"yes"; then
726 AC_DEFINE(HAVE___BUILTIN_ABS)
727 AC_DEFINE(HAVE___BUILTIN_LABS)
728 AC_DEFINE(HAVE___BUILTIN_COS)
729 AC_DEFINE(HAVE___BUILTIN_COSF)
730 AC_DEFINE(HAVE___BUILTIN_COSL)
731 AC_DEFINE(HAVE___BUILTIN_FABS)
732 AC_DEFINE(HAVE___BUILTIN_FABSF)
733 AC_DEFINE(HAVE___BUILTIN_FABSL)
734 AC_DEFINE(HAVE___BUILTIN_SIN)
735 AC_DEFINE(HAVE___BUILTIN_SINF)
736 AC_DEFINE(HAVE___BUILTIN_SINL)
737 AC_DEFINE(HAVE___BUILTIN_SQRT)
738 AC_DEFINE(HAVE___BUILTIN_SQRTF)
739 AC_DEFINE(HAVE___BUILTIN_SQRTL)
740 fi
741 ])
742
743 dnl
744 dnl Check to see what the underlying c library is like
745 dnl These checks need to do two things:
746 dnl 1) make sure the name is declared when using the c++ compiler
747 dnl 2) make sure the name has "C" linkage
748 dnl This might seem like overkill but experience has shown that it's not...
749 dnl
750 dnl Define HAVE_STRTOLD if "strtold" is declared and links
751 dnl Define HAVE_STRTOF if "strtof" is declared and links
752 dnl Define HAVE_DRAND48 if "drand48" is declared and links
753 dnl
754 dnl GLIBCPP_CHECK_STDLIB_SUPPORT
755 AC_DEFUN(GLIBCPP_CHECK_STDLIB_SUPPORT, [
756 ac_test_CXXFLAGS="${CXXFLAGS+set}"
757 ac_save_CXXFLAGS="$CXXFLAGS"
758 CXXFLAGS='-fno-builtins -D_GNU_SOURCE'
759
760 GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_2(strtold)
761 GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_2(strtof)
762 AC_CHECK_FUNCS(drand48)
763
764 CXXFLAGS="$ac_save_CXXFLAGS"
765 ])
766
767 dnl
768 dnl Check to see what the underlying c library is like
769 dnl These checks need to do two things:
770 dnl 1) make sure the name is declared when using the c++ compiler
771 dnl 2) make sure the name has "C" linkage
772 dnl This might seem like overkill but experience has shown that it's not...
773 dnl
774 dnl Define HAVE_ISATTY if "isatty" is declared and links
775 dnl
776 dnl GLIBCPP_CHECK_UNISTD_SUPPORT
777 AC_DEFUN(GLIBCPP_CHECK_UNISTD_SUPPORT, [
778 ac_test_CXXFLAGS="${CXXFLAGS+set}"
779 ac_save_CXXFLAGS="$CXXFLAGS"
780 CXXFLAGS='-fno-builtins -D_GNU_SOURCE'
781
782 GLIBCPP_CHECK_UNISTD_DECL_AND_LINKAGE_1(isatty)
783
784 CXXFLAGS="$ac_save_CXXFLAGS"
785 ])
786
787 dnl
788 dnl Check to see what the underlying c library or math library is like.
789 dnl These checks need to do two things:
790 dnl 1) make sure the name is declared when using the c++ compiler
791 dnl 2) make sure the name has "C" linkage
792 dnl This might seem like overkill but experience has shown that it's not...
793 dnl
794 dnl Define HAVE_CARGF etc if "cargf" is found.
795 dnl
796 dnl GLIBCPP_CHECK_MATH_SUPPORT
797 AC_DEFUN(GLIBCPP_CHECK_MATH_SUPPORT, [
798 ac_test_CXXFLAGS="${CXXFLAGS+set}"
799 ac_save_CXXFLAGS="$CXXFLAGS"
800 CXXFLAGS='-fno-builtins -D_GNU_SOURCE'
801
802 dnl Check libm
803 AC_CHECK_LIB(m, sin, libm="-lm")
804 ac_save_LIBS="$LIBS"
805 LIBS="$LIBS $libm"
806
807 dnl Check to see if certain C math functions exist.
808 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(isinf)
809 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(isnan)
810 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(finite)
811 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(copysign)
812 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_3(sincos)
813 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(fpclass)
814 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(qfpclass)
815 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(hypot)
816
817 dnl Check to see if basic C math functions have float versions.
818 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(float trig,
819 float_trig,
820 acosf asinf atanf \
821 cosf sinf tanf \
822 coshf sinhf tanhf)
823 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(float round,
824 float_round,
825 ceilf floorf)
826 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(expf)
827 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(isnanf)
828 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(isinff)
829 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(atan2f)
830 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(fabsf)
831 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(fmodf)
832 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(frexpf)
833 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(hypotf)
834 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(ldexpf)
835 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(logf)
836 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(log10f)
837 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(modff)
838 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(powf)
839 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(sqrtf)
840 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_3(sincosf)
841 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(finitef)
842
843 dnl Check to see if basic C math functions have long double versions.
844 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(long double trig,
845 long_double_trig,
846 acosl asinl atanl \
847 cosl sinl tanl \
848 coshl sinhl tanhl)
849 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(long double round,
850 long_double_round,
851 ceill floorl)
852 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(isnanl)
853 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(isinfl)
854 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(copysignl)
855 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(atan2l)
856 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(expl)
857 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(fabsl)
858 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(fmodl)
859 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(frexpl)
860 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(hypotl)
861 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(ldexpl)
862 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(logl)
863 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(log10l)
864 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(modfl)
865 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2(powl)
866 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(sqrtl)
867 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_3(sincosl)
868 GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1(finitel)
869
870 dnl Some runtimes have these functions with a preceding underscore. Please
871 dnl keep this sync'd with the one above. And if you add any new symbol,
872 dnl please add the corresponding block in the @BOTTOM@ section of acconfig.h.
873 dnl Check to see if certain C math functions exist.
874
875 dnl Check to see if basic C math functions have float versions.
876 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(_float trig,
877 _float_trig,
878 _acosf _asinf _atanf \
879 _cosf _sinf _tanf \
880 _coshf _sinhf _tanhf)
881 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(_float round,
882 _float_round,
883 _ceilf _floorf)
884
885 dnl Check to see if basic C math functions have long double versions.
886 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(_long double trig,
887 _long_double_trig,
888 _acosl _asinl _atanl \
889 _cosl _sinl _tanl \
890 _coshl _sinhl _tanhl)
891 GLIBCPP_CHECK_MATH_DECLS_AND_LINKAGES_1(_long double round,
892 _long_double_round,
893 _ceill _floorl)
894
895 LIBS="$ac_save_LIBS"
896 CXXFLAGS="$ac_save_CXXFLAGS"
897 ])
898
899
900 dnl
901 dnl Check to see if there is native support for complex
902 dnl
903 dnl Don't compile bits in math/* if native support exits.
904 dnl
905 dnl Define USE_COMPLEX_LONG_DOUBLE etc if "copysignl" is found.
906 dnl
907 dnl GLIBCPP_CHECK_COMPLEX_MATH_SUPPORT
908 AC_DEFUN(GLIBCPP_CHECK_COMPLEX_MATH_SUPPORT, [
909 dnl Check for complex versions of math functions of platform.
910 AC_CHECK_LIB(m, main)
911 AC_REPLACE_MATHFUNCS(nan copysignf)
912
913 dnl For __signbit to signbit conversions.
914 AC_CHECK_FUNCS([__signbit], , [LIBMATHOBJS="$LIBMATHOBJS signbit.lo"])
915 AC_CHECK_FUNCS([__signbitf], , [LIBMATHOBJS="$LIBMATHOBJS signbitf.lo"])
916
917 dnl Compile the long double complex functions only if the function
918 dnl provides the non-complex long double functions that are needed.
919 dnl Currently this includes copysignl, which should be
920 dnl cached from the GLIBCPP_CHECK_MATH_SUPPORT macro, above.
921 if test x$ac_cv_func_copysignl = x"yes"; then
922 AC_CHECK_FUNCS([__signbitl], , [LIBMATHOBJS="$LIBMATHOBJS signbitl.lo"])
923 fi
924
925 if test -n "$LIBMATHOBJS"; then
926 need_libmath=yes
927 fi
928 AC_SUBST(LIBMATHOBJS)
929 AM_CONDITIONAL(GLIBCPP_BUILD_LIBMATH, test "$need_libmath" = yes)
930 ])
931
932
933 dnl Check to see what architecture and operating system we are compiling
934 dnl for. Also, if architecture- or OS-specific flags are required for
935 dnl compilation, pick them up here.
936 dnl
937 dnl GLIBCPP_CHECK_TARGET
938 AC_DEFUN(GLIBCPP_CHECK_TARGET, [
939 . [$]{glibcpp_basedir}/configure.target
940 AC_MSG_RESULT(CPU config directory is $cpu_include_dir)
941 AC_MSG_RESULT(OS config directory is $os_include_dir)
942 ])
943
944
945 dnl
946 dnl Check to see if this target can enable the wchar_t parts of libstdc++.
947 dnl If --disable-c-mbchar was given, no wchar_t stuff is enabled. (This
948 dnl must have been previously checked.)
949 dnl
950 dnl Define _GLIBCPP_USE_WCHAR_T if all the bits are found
951 dnl Define HAVE_MBSTATE_T if mbstate_t is not in wchar.h
952 dnl
953 dnl GLIBCPP_CHECK_WCHAR_T_SUPPORT
954 AC_DEFUN(GLIBCPP_CHECK_WCHAR_T_SUPPORT, [
955
956 dnl Test wchar.h for mbstate_t, which is needed for char_traits and
957 dnl others even if wchar_t support is not on.
958 AC_MSG_CHECKING([for mbstate_t])
959 AC_TRY_COMPILE([#include <wchar.h>],
960 [mbstate_t teststate;],
961 have_mbstate_t=yes, have_mbstate_t=no)
962 AC_MSG_RESULT($have_mbstate_t)
963 if test x"$have_mbstate_t" = xyes; then
964 AC_DEFINE(HAVE_MBSTATE_T)
965 fi
966
967 dnl Sanity check for existence of ISO C99 headers for extended encoding.
968 AC_CHECK_HEADERS(wchar.h, ac_has_wchar_h=yes, ac_has_wchar_h=no)
969 AC_CHECK_HEADERS(wctype.h, ac_has_wctype_h=yes, ac_has_wctype_h=no)
970
971 dnl Only continue checking if the ISO C99 headers exist and support is on.
972 if test x"$ac_has_wchar_h" = xyes &&
973 test x"$ac_has_wctype_h" = xyes &&
974 test x"$enable_c_mbchar" != xno; then
975
976 dnl Test wchar.h for WCHAR_MIN, WCHAR_MAX, which is needed before
977 dnl numeric_limits can instantiate type_traits<wchar_t>
978 AC_MSG_CHECKING([for WCHAR_MIN and WCHAR_MAX])
979 AC_TRY_COMPILE([#include <wchar.h>],
980 [int i = WCHAR_MIN; int j = WCHAR_MAX;],
981 has_wchar_minmax=yes, has_wchar_minmax=no)
982 AC_MSG_RESULT($has_wchar_minmax)
983
984 dnl Test wchar.h for WEOF, which is what we use to determine whether
985 dnl to specialize for char_traits<wchar_t> or not.
986 AC_MSG_CHECKING([for WEOF])
987 AC_TRY_COMPILE([
988 #include <wchar.h>
989 #include <stddef.h>],
990 [wint_t i = WEOF;],
991 has_weof=yes, has_weof=no)
992 AC_MSG_RESULT($has_weof)
993
994 dnl Tests for wide character functions used in char_traits<wchar_t>.
995 ac_wfuncs=yes
996 AC_CHECK_FUNCS(wcslen wmemchr wmemcmp wmemcpy wmemmove wmemset,, \
997 ac_wfuncs=no)
998
999 dnl Checks for names injected into std:: by the c_std headers.
1000 AC_CHECK_FUNCS(btowc wctob fgetwc fgetwc fgetws fputwc fputws fwide \
1001 fwprintf fwscanf swprintf swscanf vfwprintf vfwscanf vswprintf vswscanf \
1002 vwprintf vwscanf wprintf wscanf getwc getwchar mbsinit mbrlen mbrtowc \
1003 mbsrtowcs wcsrtombs putwc putwchar ungetwc wcrtomb wcstod wcstof wcstol \
1004 wcstoul wcscpy wcsncpy wcscat wcsncat wcscmp wcscoll wcsncmp wcsxfrm \
1005 wcscspn wcsspn wcstok wcsftime wcschr wcspbrk wcsrchr wcsstr,, \
1006 ac_wfuncs=no)
1007
1008 AC_MSG_CHECKING([for ISO C99 wchar_t support])
1009 if test x"$has_weof" = xyes &&
1010 test x"$has_wchar_minmax" = xyes &&
1011 test x"$ac_wfuncs" = xyes; then
1012 ac_isoC99_wchar_t=yes
1013 else
1014 ac_isoC99_wchar_t=no
1015 fi
1016 AC_MSG_RESULT($ac_isoC99_wchar_t)
1017
1018 dnl Use iconv for wchar_t to char conversions. As such, check for
1019 dnl X/Open Portability Guide, version 2 features (XPG2).
1020 AC_CHECK_HEADER(iconv.h, ac_has_iconv_h=yes, ac_has_iconv_h=no)
1021 AC_CHECK_HEADER(langinfo.h, ac_has_langinfo_h=yes, ac_has_langinfo_h=no)
1022
1023 dnl Check for existence of libiconv.a providing XPG2 wchar_t support.
1024 AC_CHECK_LIB(iconv, iconv, libiconv="-liconv")
1025 ac_save_LIBS="$LIBS"
1026 LIBS="$LIBS $libiconv"
1027
1028 AC_CHECK_FUNCS(iconv_open iconv_close iconv nl_langinfo, \
1029 ac_XPG2funcs=yes, ac_XPG2funcs=no)
1030
1031 LIBS="$ac_save_LIBS"
1032
1033 AC_MSG_CHECKING([for XPG2 wchar_t support])
1034 if test x"$ac_has_iconv_h" = xyes &&
1035 test x"$ac_has_langinfo_h" = xyes &&
1036 test x"$ac_XPG2funcs" = xyes; then
1037 ac_XPG2_wchar_t=yes
1038 else
1039 ac_XPG2_wchar_t=no
1040 fi
1041 AC_MSG_RESULT($ac_XPG2_wchar_t)
1042
1043 dnl At the moment, only enable wchar_t specializations if all the
1044 dnl above support is present.
1045 AC_MSG_CHECKING([for enabled wchar_t specializations])
1046 if test x"$ac_isoC99_wchar_t" = xyes &&
1047 test x"$ac_XPG2_wchar_t" = xyes; then
1048 AC_DEFINE(_GLIBCPP_USE_WCHAR_T)
1049 AC_MSG_RESULT("yes")
1050 else
1051 AC_MSG_RESULT("no")
1052 fi
1053 else
1054 dnl Wide characters disabled by the user.
1055 AC_MSG_WARN([wchar_t support disabled.])
1056 fi
1057 ])
1058
1059
1060 dnl
1061 dnl Check to see if debugging libraries are to be built.
1062 dnl
1063 dnl GLIBCPP_ENABLE_DEBUG
1064 dnl
1065 dnl --enable-debug
1066 dnl builds a separate set of debugging libraries in addition to the
1067 dnl normal (shared, static) libstdc++ binaries.
1068 dnl
1069 dnl --disable-debug
1070 dnl builds only one (non-debug) version of libstdc++.
1071 dnl
1072 dnl --enable-debug-flags=FLAGS
1073 dnl iff --enable-debug == yes, then use FLAGS to build the debug library.
1074 dnl
1075 dnl + Usage: GLIBCPP_ENABLE_DEBUG[(DEFAULT)]
1076 dnl Where DEFAULT is either `yes' or `no'. If ommitted, it
1077 dnl defaults to `no'.
1078 AC_DEFUN(GLIBCPP_ENABLE_DEBUG, [dnl
1079 define([GLIBCPP_ENABLE_DEBUG_DEFAULT], ifelse($1, yes, yes, no))dnl
1080 AC_ARG_ENABLE(debug,
1081 changequote(<<, >>)dnl
1082 << --enable-debug extra debugging, turn off optimization [default=>>GLIBCPP_ENABLE_DEBUG_DEFAULT],
1083 changequote([, ])dnl
1084 [case "${enableval}" in
1085 yes) enable_debug=yes ;;
1086 no) enable_debug=no ;;
1087 *) AC_MSG_ERROR([Unknown argument to enable/disable extra debugging]) ;;
1088 esac],
1089 enable_debug=GLIBCPP_ENABLE_DEBUG_DEFAULT)dnl
1090 AC_MSG_CHECKING([for additional debug build])
1091 AC_MSG_RESULT($enable_debug)
1092 AM_CONDITIONAL(GLIBCPP_BUILD_DEBUG, test "$enable_debug" = yes)
1093 ])
1094
1095
1096 dnl Check for explicit debug flags.
1097 dnl
1098 dnl GLIBCPP_ENABLE_DEBUG_FLAGS
1099 dnl
1100 dnl --enable-debug-flags='-O1'
1101 dnl is a general method for passing flags to be used when
1102 dnl building debug libraries with --enable-debug.
1103 dnl
1104 dnl --disable-debug-flags does nothing.
1105 dnl + Usage: GLIBCPP_ENABLE_DEBUG_FLAGS(default flags)
1106 dnl If "default flags" is an empty string (or "none"), the effect is
1107 dnl the same as --disable or --enable=no.
1108 AC_DEFUN(GLIBCPP_ENABLE_DEBUG_FLAGS, [dnl
1109 define([GLIBCPP_ENABLE_DEBUG_FLAGS_DEFAULT], ifelse($1,,, $1))dnl
1110 AC_ARG_ENABLE(debug_flags,
1111 changequote(<<, >>)dnl
1112 << --enable-debug-flags=FLAGS pass compiler FLAGS when building debug
1113 library;[default=>>GLIBCPP_ENABLE_DEBUG_FLAGS_DEFAULT],
1114 changequote([, ])dnl
1115 [case "${enableval}" in
1116 none) ;;
1117 -*) enable_debug_flags="${enableval}" ;;
1118 *) AC_MSG_ERROR([Unknown argument to extra debugging flags]) ;;
1119 esac],
1120 enable_debug_flags=GLIBCPP_ENABLE_DEBUG_FLAGS_DEFAULT)dnl
1121
1122 dnl Option parsed, now set things appropriately
1123 case x"$enable_debug" in
1124 xyes)
1125 case "$enable_debug_flags" in
1126 none)
1127 DEBUG_FLAGS="-g3 -O0";;
1128 -*) #valid input
1129 DEBUG_FLAGS="${enableval}"
1130 esac
1131 ;;
1132 xno)
1133 DEBUG_FLAGS=""
1134 ;;
1135 esac
1136 AC_SUBST(DEBUG_FLAGS)
1137
1138 AC_MSG_CHECKING([for debug build flags])
1139 AC_MSG_RESULT($DEBUG_FLAGS)
1140 ])
1141
1142
1143 dnl
1144 dnl Check for "unusual" flags to pass to the compiler while building.
1145 dnl
1146 dnl GLIBCPP_ENABLE_CXX_FLAGS
1147 dnl --enable-cxx-flags='-foo -bar -baz' is a general method for passing
1148 dnl experimental flags such as -fhonor-std, -fsquangle, -Dfloat=char, etc.
1149 dnl Somehow this same set of flags must be passed when [re]building
1150 dnl libgcc.
1151 dnl --disable-cxx-flags passes nothing.
1152 dnl + See http://gcc.gnu.org/ml/libstdc++/2000-q2/msg00131.html
1153 dnl http://gcc.gnu.org/ml/libstdc++/2000-q2/msg00284.html
1154 dnl http://gcc.gnu.org/ml/libstdc++/2000-q1/msg00035.html
1155 dnl + Usage: GLIBCPP_ENABLE_CXX_FLAGS(default flags)
1156 dnl If "default flags" is an empty string (or "none"), the effect is
1157 dnl the same as --disable or --enable=no.
1158 AC_DEFUN(GLIBCPP_ENABLE_CXX_FLAGS, [dnl
1159 define([GLIBCPP_ENABLE_CXX_FLAGS_DEFAULT], ifelse($1,,, $1))dnl
1160 AC_MSG_CHECKING([for extra compiler flags for building])
1161 AC_ARG_ENABLE(cxx_flags,
1162 changequote(<<, >>)dnl
1163 << --enable-cxx-flags=FLAGS pass compiler FLAGS when building library;
1164 [default=>>GLIBCPP_ENABLE_CXX_FLAGS_DEFAULT],
1165 changequote([, ])dnl
1166 [case "x$enable_cxx_flags" in
1167 xyes)
1168 AC_MSG_ERROR([--enable-cxx-flags needs compiler flags as arguments]) ;;
1169 xno | xnone | x)
1170 enable_cxx_flags='' ;;
1171 *)
1172 enable_cxx_flags="$enableval" ;;
1173 esac],
1174 enable_cxx_flags=GLIBCPP_ENABLE_CXX_FLAGS_DEFAULT)
1175
1176 dnl Run through flags (either default or command-line) and set anything
1177 dnl extra (e.g., #defines) that must accompany particular g++ options.
1178 if test -n "$enable_cxx_flags"; then
1179 for f in $enable_cxx_flags; do
1180 case "$f" in
1181 -fhonor-std) ;;
1182 -*) ;;
1183 *) # and we're trying to pass /what/ exactly?
1184 AC_MSG_ERROR([compiler flags start with a -]) ;;
1185 esac
1186 done
1187 fi
1188 EXTRA_CXX_FLAGS="$enable_cxx_flags"
1189 AC_MSG_RESULT($EXTRA_CXX_FLAGS)
1190 AC_SUBST(EXTRA_CXX_FLAGS)
1191 ])
1192
1193
1194 dnl
1195 dnl Check for which locale library to use: gnu or generic.
1196 dnl
1197 dnl GLIBCPP_ENABLE_CLOCALE
1198 dnl --enable-clocale=gnu sets config/locale/c_locale_gnu.cc and friends
1199 dnl --enable-clocale=generic sets config/locale/c_locale_generic.cc and friends
1200 dnl
1201 dnl default is generic
1202 dnl
1203 AC_DEFUN(GLIBCPP_ENABLE_CLOCALE, [
1204 AC_MSG_CHECKING([for clocale to use])
1205 AC_ARG_ENABLE(clocale,
1206 [ --enable-clocale enable model for target locale package.
1207 --enable-clocale=MODEL use MODEL target-speific locale package. [default=generic]
1208 ],
1209 if test x$enable_clocale = xno; then
1210 enable_clocale=no
1211 fi,
1212 enable_clocale=no)
1213
1214 enable_clocale_flag=$enable_clocale
1215
1216 dnl Probe for locale support if no specific model is specified.
1217 dnl Default to "generic"
1218 if test x$enable_clocale_flag = xno; then
1219 case x${target_os} in
1220 xlinux* | xgnu*)
1221 AC_EGREP_CPP([_GLIBCPP_ok], [
1222 #include <features.h>
1223 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)
1224 _GLIBCPP_ok
1225 #endif
1226 ], enable_clocale_flag=gnu, enable_clocale_flag=generic)
1227
1228 # Test for bugs early in glibc-2.2.x series
1229 if test x$enable_clocale_flag = xgnu; then
1230 AC_TRY_RUN([
1231 #define _GNU_SOURCE 1
1232 #include <locale.h>
1233 #include <string.h>
1234 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
1235 extern __typeof(newlocale) __newlocale;
1236 extern __typeof(duplocale) __duplocale;
1237 extern __typeof(strcoll_l) __strcoll_l;
1238 #endif
1239 int main()
1240 {
1241 const char __one[] = "Äuglein Augmen";
1242 const char __two[] = "Äuglein";
1243 int i;
1244 int j;
1245 __locale_t loc;
1246 __locale_t loc_dup;
1247 loc = __newlocale(1 << LC_ALL, "de_DE", 0);
1248 loc_dup = __duplocale(loc);
1249 i = __strcoll_l(__one, __two, loc);
1250 j = __strcoll_l(__one, __two, loc_dup);
1251 return 0;
1252 }
1253 ],
1254 [enable_clocale_flag=gnu],[enable_clocale_flag=generic],
1255 [enable_clocale_flag=generic])
1256 fi
1257
1258 # ... at some point put __strxfrm_l tests in as well.
1259 ;;
1260 *)
1261 enable_clocale_flag=generic
1262 ;;
1263 esac
1264 fi
1265
1266 dnl Deal with gettext issues.
1267 AC_ARG_ENABLE(nls,
1268 [ --enable-nls use Native Language Support (default)],
1269 , enable_nls=yes)
1270 USE_NLS=no
1271
1272 dnl Set configure bits for specified locale package
1273 case x${enable_clocale_flag} in
1274 xgeneric)
1275 AC_MSG_RESULT(generic)
1276
1277 CLOCALE_H=config/locale/generic/c_locale.h
1278 CLOCALE_CC=config/locale/generic/c_locale.cc
1279 CCODECVT_H=config/locale/generic/codecvt_specializations.h
1280 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1281 CCOLLATE_CC=config/locale/generic/collate_members.cc
1282 CCTYPE_CC=config/locale/generic/ctype_members.cc
1283 CMESSAGES_H=config/locale/generic/messages_members.h
1284 CMESSAGES_CC=config/locale/generic/messages_members.cc
1285 CMONEY_CC=config/locale/generic/monetary_members.cc
1286 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1287 CTIME_H=config/locale/generic/time_members.h
1288 CTIME_CC=config/locale/generic/time_members.cc
1289 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
1290 ;;
1291 xgnu)
1292 AC_MSG_RESULT(gnu)
1293
1294 # Declare intention to use gettext, and add support for specific
1295 # languages.
1296 # For some reason, ALL_LINGUAS has to be before AM-GNU-GETTEXT
1297 ALL_LINGUAS="de fr"
1298
1299 # Don't call AM-GNU-GETTEXT here. Instead, assume glibc.
1300 AC_CHECK_PROG(check_msgfmt, msgfmt, yes, no)
1301 if test x"$check_msgfmt" = x"yes" && test x"$enable_nls" = x"yes"; then
1302 USE_NLS=yes
1303 fi
1304 # Export the build objects.
1305 for ling in $ALL_LINGUAS; do \
1306 glibcpp_MOFILES="$glibcpp_MOFILES $ling.mo"; \
1307 glibcpp_POFILES="$glibcpp_POFILES $ling.po"; \
1308 done
1309 AC_SUBST(glibcpp_MOFILES)
1310 AC_SUBST(glibcpp_POFILES)
1311
1312 CLOCALE_H=config/locale/gnu/c_locale.h
1313 CLOCALE_CC=config/locale/gnu/c_locale.cc
1314 CCODECVT_H=config/locale/ieee_1003.1-2001/codecvt_specializations.h
1315 CCODECVT_CC=config/locale/gnu/codecvt_members.cc
1316 CCOLLATE_CC=config/locale/gnu/collate_members.cc
1317 CCTYPE_CC=config/locale/gnu/ctype_members.cc
1318 CMESSAGES_H=config/locale/gnu/messages_members.h
1319 CMESSAGES_CC=config/locale/gnu/messages_members.cc
1320 CMONEY_CC=config/locale/gnu/monetary_members.cc
1321 CNUMERIC_CC=config/locale/gnu/numeric_members.cc
1322 CTIME_H=config/locale/gnu/time_members.h
1323 CTIME_CC=config/locale/gnu/time_members.cc
1324 CLOCALE_INTERNAL_H=config/locale/gnu/c++locale_internal.h
1325 ;;
1326 xieee_1003.1-2001)
1327 AC_MSG_RESULT(generic)
1328
1329 CLOCALE_H=config/locale/ieee_1003.1-2001/c_locale.h
1330 CLOCALE_CC=config/locale/ieee_1003.1-2001/c_locale.cc
1331 CCODECVT_H=config/locale/ieee_1003.1-2001/codecvt_specializations.h
1332 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1333 CCOLLATE_CC=config/locale/generic/collate_members.cc
1334 CCTYPE_CC=config/locale/generic/ctype_members.cc
1335 CMESSAGES_H=config/locale/ieee_1003.1-2001/messages_members.h
1336 CMESSAGES_CC=config/locale/ieee_1003.1-2001/messages_members.cc
1337 CMONEY_CC=config/locale/generic/monetary_members.cc
1338 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1339 CTIME_H=config/locale/generic/time_members.h
1340 CTIME_CC=config/locale/generic/time_members.cc
1341 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
1342 ;;
1343 *)
1344 echo "$enable_clocale is an unknown locale package" 1>&2
1345 exit 1
1346 ;;
1347 esac
1348
1349 # This is where the testsuite looks for locale catalogs, using the
1350 # -DLOCALEDIR define during testsuite compilation.
1351 glibcpp_localedir=${glibcpp_builddir}/po/share/locale
1352 AC_SUBST(glibcpp_localedir)
1353
1354 AC_SUBST(USE_NLS)
1355 AC_SUBST(CLOCALE_H)
1356 AC_SUBST(CCODECVT_H)
1357 AC_SUBST(CMESSAGES_H)
1358 AC_SUBST(CCODECVT_CC)
1359 AC_SUBST(CCOLLATE_CC)
1360 AC_SUBST(CCTYPE_CC)
1361 AC_SUBST(CMESSAGES_CC)
1362 AC_SUBST(CMONEY_CC)
1363 AC_SUBST(CNUMERIC_CC)
1364 AC_SUBST(CTIME_H)
1365 AC_SUBST(CTIME_CC)
1366 AC_SUBST(CLOCALE_CC)
1367 AC_SUBST(CLOCALE_INTERNAL_H)
1368 ])
1369
1370
1371 dnl
1372 dnl Check for which I/O library to use: libio, or something specific.
1373 dnl
1374 dnl GLIBCPP_ENABLE_CSTDIO
1375 dnl --enable-cstdio=libio sets config/io/c_io_libio.h and friends
1376 dnl
1377 dnl default is stdio
1378 dnl
1379 AC_DEFUN(GLIBCPP_ENABLE_CSTDIO, [
1380 AC_MSG_CHECKING([for cstdio to use])
1381 AC_ARG_ENABLE(cstdio,
1382 [ --enable-cstdio enable stdio for target io package.
1383 --enable-cstdio=LIB use LIB target-speific io package. [default=stdio]
1384 ],
1385 if test x$enable_cstdio = xno; then
1386 enable_cstdio=stdio
1387 fi,
1388 enable_cstdio=stdio)
1389
1390 enable_cstdio_flag=$enable_cstdio
1391
1392 dnl Check if a valid I/O package
1393 case x${enable_cstdio_flag} in
1394 xlibio)
1395 CSTDIO_H=config/io/c_io_libio.h
1396 BASIC_FILE_H=config/io/basic_file_libio.h
1397 BASIC_FILE_CC=config/io/basic_file_libio.cc
1398 AC_MSG_RESULT(libio)
1399
1400 # see if we are on a system with libio native (ie, linux)
1401 AC_CHECK_HEADER(libio.h, has_libio=yes, has_libio=no)
1402
1403 # Need to check and see what version of glibc is being used. If
1404 # it's not glibc-2.2 or higher, then we'll need to go ahead and
1405 # compile most of libio for linux systems.
1406 if test x$has_libio = x"yes"; then
1407 case "$target" in
1408 *-*-linux*)
1409 AC_MSG_CHECKING([for glibc version >= 2.2])
1410 AC_EGREP_CPP([ok], [
1411 #include <features.h>
1412 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)
1413 ok
1414 #endif
1415 ], glibc_satisfactory=yes, glibc_satisfactory=no)
1416 AC_MSG_RESULT($glibc_satisfactory)
1417 ;;
1418 esac
1419
1420 # XXX at the moment, admit defeat and force the recompilation
1421 # XXX of glibc even on glibc-2.2 systems, because libio is not synched.
1422 glibc_satisfactory=no
1423
1424 if test x$glibc_satisfactory = x"yes"; then
1425 need_libio=no
1426 need_wlibio=no
1427 else
1428 need_libio=yes
1429 # bkoz XXX need to add checks to enable this
1430 # pme XXX here's a first pass at such a check
1431 if test x$enable_c_mbchar != xno; then
1432 need_wlibio=yes
1433 else
1434 need_wlibio=no
1435 fi
1436 fi
1437
1438 else
1439 # Using libio, but <libio.h> doesn't exist on the target system. . .
1440 need_libio=yes
1441 # bkoz XXX need to add checks to enable this
1442 # pme XXX here's a first pass at such a check
1443 if test x$enable_c_mbchar != xno; then
1444 need_wlibio=yes
1445 else
1446 need_wlibio=no
1447 fi
1448 fi
1449 ;;
1450 xstdio | x | xno | xnone | xyes)
1451 # default
1452 CSTDIO_H=config/io/c_io_stdio.h
1453 BASIC_FILE_H=config/io/basic_file_stdio.h
1454 BASIC_FILE_CC=config/io/basic_file_stdio.cc
1455 AC_MSG_RESULT(stdio)
1456
1457 # We're not using stdio.
1458 need_libio=no
1459 need_wlibio=no
1460 ;;
1461 *)
1462 echo "$enable_cstdio is an unknown io package" 1>&2
1463 exit 1
1464 ;;
1465 esac
1466 AC_SUBST(CSTDIO_H)
1467 AC_SUBST(BASIC_FILE_H)
1468 AC_SUBST(BASIC_FILE_CC)
1469
1470 # 2000-08-04 bkoz hack
1471 CCODECVT_C=config/io/c_io_libio_codecvt.c
1472 AC_SUBST(CCODECVT_C)
1473 # 2000-08-04 bkoz hack
1474
1475 AM_CONDITIONAL(GLIBCPP_BUILD_LIBIO,
1476 test "$need_libio" = yes || test "$need_wlibio" = yes)
1477 AM_CONDITIONAL(GLIBCPP_NEED_LIBIO, test "$need_libio" = yes)
1478 AM_CONDITIONAL(GLIBCPP_NEED_WLIBIO, test "$need_wlibio" = yes)
1479 if test "$need_libio" = yes || test "$need_wlibio" = yes; then
1480 libio_la=../libio/libio.la
1481 else
1482 libio_la=
1483 fi
1484 AC_SUBST(libio_la)
1485 ])
1486
1487
1488 dnl
1489 dnl Setup to use the gcc gthr.h thread-specific memory and mutex model.
1490 dnl We must stage the required headers so that they will be installed
1491 dnl with the library (unlike libgcc, the STL implementation is provided
1492 dnl solely within headers). Since we must not inject random user-space
1493 dnl macro names into user-provided C++ code, we first stage into <file>-in
1494 dnl and process to <file> with an output command. The reason for a two-
1495 dnl stage process here is to correctly handle $srcdir!=$objdir without
1496 dnl having to write complex code (the sed commands to clean the macro
1497 dnl namespace are complex and fragile enough as it is). We must also
1498 dnl add a relative path so that -I- is supported properly.
1499 dnl
1500 AC_DEFUN(GLIBCPP_ENABLE_THREADS, [
1501 AC_MSG_CHECKING([for thread model used by GCC])
1502 target_thread_file=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
1503 AC_MSG_RESULT([$target_thread_file])
1504
1505 if test $target_thread_file != single; then
1506 AC_DEFINE(HAVE_GTHR_DEFAULT)
1507 AC_DEFINE(_GLIBCPP_SUPPORTS_WEAK, __GXX_WEAK__)
1508 fi
1509
1510 glibcpp_thread_h=gthr-$target_thread_file.h
1511 AC_SUBST(glibcpp_thread_h)
1512 ])
1513
1514
1515 dnl
1516 dnl Check for exception handling support. If an explicit enable/disable
1517 dnl sjlj exceptions is given, we don't have to detect. Otherwise the
1518 dnl target may or may not support call frame exceptions.
1519 dnl
1520 dnl GLIBCPP_ENABLE_SJLJ_EXCEPTIONS
1521 dnl --enable-sjlj-exceptions forces the use of builtin setjmp.
1522 dnl --disable-sjlj-exceptions forces the use of call frame unwinding.
1523 dnl
1524 dnl Define _GLIBCPP_SJLJ_EXCEPTIONS if the compiler is configured for it.
1525 dnl
1526 AC_DEFUN(GLIBCPP_ENABLE_SJLJ_EXCEPTIONS, [
1527 AC_MSG_CHECKING([for exception model to use])
1528 AC_LANG_SAVE
1529 AC_LANG_CPLUSPLUS
1530 AC_ARG_ENABLE(sjlj-exceptions,
1531 [ --enable-sjlj-exceptions force use of builtin_setjmp for exceptions],
1532 [:],
1533 [dnl Botheration. Now we've got to detect the exception model.
1534 dnl Link tests against libgcc.a are problematic since -- at least
1535 dnl as of this writing -- we've not been given proper -L bits for
1536 dnl single-tree newlib and libgloss.
1537 dnl
1538 dnl This is what AC_TRY_COMPILE would do if it didn't delete the
1539 dnl conftest files before we got a change to grep them first.
1540 cat > conftest.$ac_ext << EOF
1541 [#]line __oline__ "configure"
1542 struct S { ~S(); };
1543 void bar();
1544 void foo()
1545 {
1546 S s;
1547 bar();
1548 }
1549 EOF
1550 old_CXXFLAGS="$CXXFLAGS"
1551 CXXFLAGS=-S
1552 if AC_TRY_EVAL(ac_compile); then
1553 if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
1554 enable_sjlj_exceptions=yes
1555 elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then
1556 enable_sjlj_exceptions=no
1557 fi
1558 fi
1559 CXXFLAGS="$old_CXXFLAGS"
1560 rm -f conftest*])
1561 if test x$enable_sjlj_exceptions = xyes; then
1562 AC_DEFINE(_GLIBCPP_SJLJ_EXCEPTIONS, 1,
1563 [Define if the compiler is configured for setjmp/longjmp exceptions.])
1564 ac_exception_model_name=sjlj
1565 elif test x$enable_sjlj_exceptions = xno; then
1566 ac_exception_model_name="call frame"
1567 else
1568 AC_MSG_ERROR([unable to detect exception model])
1569 fi
1570 AC_LANG_RESTORE
1571 AC_MSG_RESULT($ac_exception_model_name)
1572 ])
1573
1574
1575 dnl
1576 dnl Check for libunwind exception handling support. If enabled then
1577 dnl we assume that the _Unwind_* functions that make up the Unwind ABI
1578 dnl (_Unwind_RaiseException, _Unwind_Resume, etc.) are defined by
1579 dnl libunwind instead of libgcc and that libstdc++ has a dependency
1580 dnl on libunwind as well as libgcc.
1581 dnl
1582 dnl GLIBCPP_ENABLE_LIBUNWIND_EXCEPTIONS
1583 dnl --enable-libunwind-exceptions forces the use of libunwind.
1584 dnl --disable-libunwind-exceptions assumes there is no libunwind.
1585 dnl
1586 dnl Define _GLIBCPP_LIBUNWIND_EXCEPTIONS if requested.
1587 dnl
1588 AC_DEFUN(GLIBCPP_ENABLE_LIBUNWIND_EXCEPTIONS, [
1589 AC_MSG_CHECKING([for use of libunwind])
1590 AC_ARG_ENABLE(libunwind-exceptions,
1591 [ --enable-libunwind-exceptions force use of libunwind for exceptions],
1592 use_libunwind_exceptions=$enableval,
1593 use_libunwind_exceptions=no)
1594 AC_MSG_RESULT($use_libunwind_exceptions)
1595 dnl Option parsed, now set things appropriately
1596 if test x"$use_libunwind_exceptions" = xyes; then
1597 LIBUNWIND_FLAG="-lunwind"
1598 else
1599 LIBUNWIND_FLAG=""
1600 fi
1601 AC_SUBST(LIBUNWIND_FLAG)
1602 ])
1603
1604 dnl
1605 dnl Check for ISO/IEC 9899:1999 "C99" support.
1606 dnl
1607 dnl GLIBCPP_ENABLE_C99
1608 dnl --enable-c99 defines _GLIBCPP_USE_C99
1609 dnl --disable-c99 leaves _GLIBCPP_USE_C99 undefined
1610 dnl + Usage: GLIBCPP_ENABLE_C99[(DEFAULT)]
1611 dnl Where DEFAULT is either `yes' or `no'. If omitted, it
1612 dnl defaults to `no'.
1613 dnl + If 'C99' stuff is not available, ignores DEFAULT and sets `no'.
1614 dnl
1615 dnl GLIBCPP_ENABLE_C99
1616 AC_DEFUN(GLIBCPP_ENABLE_C99, [dnl
1617 define([GLIBCPP_ENABLE_C99_DEFAULT], ifelse($1, yes, yes, no))dnl
1618
1619 AC_ARG_ENABLE(c99,
1620 changequote(<<, >>)dnl
1621 <<--enable-c99 turns on 'ISO/IEC 9899:1999 support' [default=>>GLIBCPP_ENABLE_C99_DEFAULT],
1622 changequote([, ])dnl
1623 [case "$enableval" in
1624 yes) enable_c99=yes ;;
1625 no) enable_c99=no ;;
1626 *) AC_MSG_ERROR([Unknown argument to enable/disable C99]) ;;
1627 esac],
1628 enable_c99=GLIBCPP_ENABLE_C99_DEFAULT)dnl
1629
1630 AC_LANG_SAVE
1631 AC_LANG_CPLUSPLUS
1632
1633 # Check for the existence of <math.h> functions used if C99 is enabled.
1634 ac_c99_math=yes;
1635 AC_MSG_CHECKING([for ISO C99 support in <math.h>])
1636 AC_TRY_COMPILE([#include <math.h>],[fpclassify(0.0);],, [ac_c99_math=no])
1637 AC_TRY_COMPILE([#include <math.h>],[isfinite(0.0);],, [ac_c99_math=no])
1638 AC_TRY_COMPILE([#include <math.h>],[isinf(0.0);],, [ac_c99_math=no])
1639 AC_TRY_COMPILE([#include <math.h>],[isnan(0.0);],, [ac_c99_math=no])
1640 AC_TRY_COMPILE([#include <math.h>],[isnormal(0.0);],, [ac_c99_math=no])
1641 AC_TRY_COMPILE([#include <math.h>],[signbit(0.0);],, [ac_c99_math=no])
1642 AC_TRY_COMPILE([#include <math.h>],[isgreater(0.0,0.0);],, [ac_c99_math=no])
1643 AC_TRY_COMPILE([#include <math.h>],
1644 [isgreaterequal(0.0,0.0);],, [ac_c99_math=no])
1645 AC_TRY_COMPILE([#include <math.h>],[isless(0.0,0.0);],, [ac_c99_math=no])
1646 AC_TRY_COMPILE([#include <math.h>],[islessequal(0.0,0.0);],,[ac_c99_math=no])
1647 AC_TRY_COMPILE([#include <math.h>],
1648 [islessgreater(0.0,0.0);],, [ac_c99_math=no])
1649 AC_TRY_COMPILE([#include <math.h>],
1650 [isunordered(0.0,0.0);],, [ac_c99_math=no])
1651 AC_MSG_RESULT($ac_c99_math)
1652
1653 # Check for the existence in <stdio.h> of vscanf, et. al.
1654 ac_c99_stdio=yes;
1655 AC_MSG_CHECKING([for ISO C99 support in <stdio.h>])
1656 AC_TRY_COMPILE([#include <stdio.h>],
1657 [snprintf("12", 0, "%i");],, [ac_c99_stdio=no])
1658 AC_TRY_COMPILE([#include <stdio.h>
1659 #include <stdarg.h>
1660 void foo(char* fmt, ...)
1661 {va_list args; va_start(args, fmt);
1662 vfscanf(stderr, "%i", args);}],
1663 [],, [ac_c99_stdio=no])
1664 AC_TRY_COMPILE([#include <stdio.h>
1665 #include <stdarg.h>
1666 void foo(char* fmt, ...)
1667 {va_list args; va_start(args, fmt);
1668 vscanf("%i", args);}],
1669 [],, [ac_c99_stdio=no])
1670 AC_TRY_COMPILE([#include <stdio.h>
1671 #include <stdarg.h>
1672 void foo(char* fmt, ...)
1673 {va_list args; va_start(args, fmt);
1674 vsnprintf(fmt, 0, "%i", args);}],
1675 [],, [ac_c99_stdio=no])
1676 AC_TRY_COMPILE([#include <stdio.h>
1677 #include <stdarg.h>
1678 void foo(char* fmt, ...)
1679 {va_list args; va_start(args, fmt);
1680 vsscanf(fmt, "%i", args);}],
1681 [],, [ac_c99_stdio=no])
1682 AC_MSG_RESULT($ac_c99_stdio)
1683
1684 # Check for the existence in <stdlib.h> of lldiv_t, et. al.
1685 ac_c99_stdlib=yes;
1686 AC_MSG_CHECKING([for lldiv_t declaration])
1687 AC_CACHE_VAL(ac_c99_lldiv_t, [
1688 AC_TRY_COMPILE([#include <stdlib.h>],
1689 [ lldiv_t mydivt;],
1690 [ac_c99_lldiv_t=yes], [ac_c99_lldiv_t=no])
1691 ])
1692 AC_MSG_RESULT($ac_c99_lldiv_t)
1693
1694 AC_MSG_CHECKING([for ISO C99 support in <stdlib.h>])
1695 AC_TRY_COMPILE([#include <stdlib.h>],
1696 [char* tmp; strtof("gnu", &tmp);],, [ac_c99_stdlib=no])
1697 AC_TRY_COMPILE([#include <stdlib.h>],
1698 [char* tmp; strtold("gnu", &tmp);],, [ac_c99_stdlib=no])
1699 AC_TRY_COMPILE([#include <stdlib.h>], [llabs(10);],, [ac_c99_stdlib=no])
1700 AC_TRY_COMPILE([#include <stdlib.h>], [lldiv(10,1);],, [ac_c99_stdlib=no])
1701 AC_TRY_COMPILE([#include <stdlib.h>], [atoll("10");],, [ac_c99_stdlib=no])
1702 AC_TRY_COMPILE([#include <stdlib.h>], [_Exit(0);],, [ac_c99_stdlib=no])
1703 if test x"$ac_c99_lldiv_t" = x"no"; then
1704 ac_c99_stdlib=no;
1705 fi;
1706 AC_MSG_RESULT($ac_c99_stdlib)
1707
1708 # Check for the existence of <wchar.h> functions used if C99 is enabled.
1709 # XXX the wchar.h checks should be rolled into the general C99 bits.
1710 ac_c99_wchar=yes;
1711 AC_MSG_CHECKING([for additional ISO C99 support in <wchar.h>])
1712 AC_TRY_COMPILE([#include <wchar.h>],
1713 [wcstold(L"10.0", NULL);],, [ac_c99_wchar=no])
1714 AC_TRY_COMPILE([#include <wchar.h>],
1715 [wcstoll(L"10", NULL, 10);],, [ac_c99_wchar=no])
1716 AC_TRY_COMPILE([#include <wchar.h>],
1717 [wcstoull(L"10", NULL, 10);],, [ac_c99_wchar=no])
1718 AC_MSG_RESULT($ac_c99_wchar)
1719
1720 AC_MSG_CHECKING([for enabled ISO C99 support])
1721 if test x"$ac_c99_math" = x"no" ||
1722 test x"$ac_c99_stdio" = x"no" ||
1723 test x"$ac_c99_stdlib" = x"no" ||
1724 test x"$ac_c99_wchar" = x"no"; then
1725 enable_c99=no;
1726 fi;
1727 AC_MSG_RESULT($enable_c99)
1728
1729 # Option parsed, now set things appropriately
1730 if test x"$enable_c99" = x"yes"; then
1731 AC_DEFINE(_GLIBCPP_USE_C99)
1732 fi
1733
1734 AC_LANG_RESTORE
1735 ])
1736
1737
1738 dnl
1739 dnl Check for template specializations for the 'long long' type extension.
1740 dnl The result determines only whether 'long long' I/O is enabled; things
1741 dnl like numeric_limits<> specializations are always available.
1742 dnl
1743 dnl GLIBCPP_ENABLE_LONG_LONG
1744 dnl --enable-long-long defines _GLIBCPP_USE_LONG_LONG
1745 dnl --disable-long-long leaves _GLIBCPP_USE_LONG_LONG undefined
1746 dnl + Usage: GLIBCPP_ENABLE_LONG_LONG[(DEFAULT)]
1747 dnl Where DEFAULT is either `yes' or `no'. If omitted, it
1748 dnl defaults to `no'.
1749 dnl + If 'long long' stuff is not available, ignores DEFAULT and sets `no'.
1750 dnl
1751 dnl GLIBCPP_ENABLE_LONG_LONG
1752 AC_DEFUN(GLIBCPP_ENABLE_LONG_LONG, [dnl
1753 define([GLIBCPP_ENABLE_LONG_LONG_DEFAULT], ifelse($1, yes, yes, no))dnl
1754
1755 AC_ARG_ENABLE(long-long,
1756 changequote(<<, >>)dnl
1757 <<--enable-long-long turns on 'long long' [default=>>GLIBCPP_ENABLE_LONG_LONG_DEFAULT],
1758 changequote([, ])dnl
1759 [case "$enableval" in
1760 yes) enable_long_long=yes ;;
1761 no) enable_long_long=no ;;
1762 *) AC_MSG_ERROR([Unknown argument to enable/disable long long]) ;;
1763 esac],
1764 enable_long_long=GLIBCPP_ENABLE_LONG_LONG_DEFAULT)dnl
1765
1766 AC_LANG_SAVE
1767 AC_LANG_CPLUSPLUS
1768
1769 AC_MSG_CHECKING([for enabled long long I/O support])
1770 # iostreams require strtoll, strtoull to compile
1771 AC_TRY_COMPILE([#include <stdlib.h>],
1772 [char* tmp; strtoll("gnu", &tmp, 10);],,[enable_long_long=no])
1773 AC_TRY_COMPILE([#include <stdlib.h>],
1774 [char* tmp; strtoull("gnu", &tmp, 10);],,[enable_long_long=no])
1775
1776 # Option parsed, now set things appropriately
1777 if test x"$enable_long_long" = xyes; then
1778 AC_DEFINE(_GLIBCPP_USE_LONG_LONG)
1779 fi
1780 AC_MSG_RESULT($enable_long_long)
1781
1782 AC_LANG_RESTORE
1783 ])
1784
1785
1786 dnl
1787 dnl Check for what type of C headers to use.
1788 dnl
1789 dnl GLIBCPP_ENABLE_CHEADERS
1790 dnl --enable-cheaders= [does stuff].
1791 dnl --disable-cheaders [does not do anything, really].
1792 dnl + Usage: GLIBCPP_ENABLE_CHEADERS[(DEFAULT)]
1793 dnl Where DEFAULT is either `c' or `c_std'.
1794 dnl If ommitted, it defaults to `c_std'.
1795 AC_DEFUN(GLIBCPP_ENABLE_CHEADERS, [dnl
1796 define([GLIBCPP_ENABLE_CHEADERS_DEFAULT], ifelse($1, c_std, c_std, c_std))dnl
1797 AC_MSG_CHECKING([for c header strategy to use])
1798 AC_ARG_ENABLE(cheaders,
1799 changequote(<<, >>)dnl
1800 << --enable-cheaders=MODEL construct "C" header files for g++ [default=>>GLIBCPP_ENABLE_CHEADERS_DEFAULT],
1801 changequote([, ])
1802 [case "$enableval" in
1803 c)
1804 enable_cheaders=c
1805 ;;
1806 c_std)
1807 enable_cheaders=c_std
1808 ;;
1809 *) AC_MSG_ERROR([Unknown argument to enable/disable "C" headers])
1810 ;;
1811 esac],
1812 enable_cheaders=GLIBCPP_ENABLE_CHEADERS_DEFAULT)
1813 AC_MSG_RESULT($enable_cheaders)
1814
1815 dnl Option parsed, now set things appropriately
1816 case "$enable_cheaders" in
1817 c_std)
1818 C_INCLUDE_DIR='${glibcpp_srcdir}/include/c_std'
1819 ;;
1820 c)
1821 C_INCLUDE_DIR='${glibcpp_srcdir}/include/c'
1822 ;;
1823 esac
1824
1825 AC_SUBST(C_INCLUDE_DIR)
1826 AM_CONDITIONAL(GLIBCPP_C_HEADERS_C, test "$enable_cheaders" = c)
1827 AM_CONDITIONAL(GLIBCPP_C_HEADERS_C_STD, test "$enable_cheaders" = c_std)
1828 AM_CONDITIONAL(GLIBCPP_C_HEADERS_COMPATIBILITY, test "$c_compatibility" = yes)
1829 ])
1830
1831
1832 dnl
1833 dnl Check for wide character support. Has the same effect as the option
1834 dnl in gcc's configure, but in a form that autoconf can mess with.
1835 dnl
1836 dnl GLIBCPP_ENABLE_C_MBCHAR
1837 dnl --enable-c-mbchar requests all the wchar_t stuff.
1838 dnl --disable-c-mbchar doesn't.
1839 dnl + Usage: GLIBCPP_ENABLE_C_MBCHAR[(DEFAULT)]
1840 dnl Where DEFAULT is either `yes' or `no'. If ommitted, it
1841 dnl defaults to `no'.
1842 AC_DEFUN(GLIBCPP_ENABLE_C_MBCHAR, [dnl
1843 define([GLIBCPP_ENABLE_C_MBCHAR_DEFAULT], ifelse($1, yes, yes, no))dnl
1844 AC_ARG_ENABLE(c-mbchar,
1845 changequote(<<, >>)dnl
1846 << --enable-c-mbchar enable multibyte (wide) characters [default=>>GLIBCPP_ENABLE_C_MBCHAR_DEFAULT],
1847 changequote([, ])dnl
1848 [case "$enableval" in
1849 yes) enable_c_mbchar=yes ;;
1850 no) enable_c_mbchar=no ;;
1851 *) AC_MSG_ERROR([Unknown argument to enable/disable c-mbchar]) ;;
1852 esac],
1853 enable_c_mbchar=GLIBCPP_ENABLE_C_MBCHAR_DEFAULT)dnl
1854 dnl Option parsed, now other scripts can test enable_c_mbchar for yes/no.
1855 ])
1856
1857
1858 dnl
1859 dnl Set up *_INCLUDES and *_INCLUDE_DIR variables for all sundry Makefile.am's.
1860 dnl
1861 dnl TOPLEVEL_INCLUDES
1862 dnl LIBMATH_INCLUDES
1863 dnl LIBSUPCXX_INCLUDES
1864 dnl LIBIO_INCLUDES
1865 dnl
1866 dnl GLIBCPP_EXPORT_INCLUDES
1867 AC_DEFUN(GLIBCPP_EXPORT_INCLUDES, [
1868 # Root level of the build directory include sources.
1869 GLIBCPP_INCLUDES="-I${glibcpp_builddir}/include/${target_alias} -I${glibcpp_builddir}/include"
1870
1871 # Passed down for canadian crosses.
1872 if test x"$CANADIAN" = xyes; then
1873 TOPLEVEL_INCLUDES='-I$(includedir)'
1874 fi
1875
1876 LIBMATH_INCLUDES='-I$(top_srcdir)/libmath'
1877
1878 LIBSUPCXX_INCLUDES='-I$(top_srcdir)/libsupc++'
1879
1880 if test x"$need_libio" = xyes; then
1881 LIBIO_INCLUDES='-I$(top_builddir)/libio -I$(top_srcdir)/libio'
1882 AC_SUBST(LIBIO_INCLUDES)
1883 fi
1884
1885 # Now, export this to all the little Makefiles....
1886 AC_SUBST(GLIBCPP_INCLUDES)
1887 AC_SUBST(TOPLEVEL_INCLUDES)
1888 AC_SUBST(LIBMATH_INCLUDES)
1889 AC_SUBST(LIBSUPCXX_INCLUDES)
1890 ])
1891
1892
1893 dnl
1894 dnl Set up *_FLAGS and *FLAGS variables for all sundry Makefile.am's.
1895 dnl
1896 AC_DEFUN(GLIBCPP_EXPORT_FLAGS, [
1897 # Optimization flags that are probably a good idea for thrill-seekers. Just
1898 # uncomment the lines below and make, everything else is ready to go...
1899 # OPTIMIZE_CXXFLAGS = -O3 -fstrict-aliasing -fvtable-gc
1900 OPTIMIZE_CXXFLAGS=
1901 AC_SUBST(OPTIMIZE_CXXFLAGS)
1902
1903 WARN_FLAGS='-Wall -Wno-format -W -Wwrite-strings -Winline'
1904 AC_SUBST(WARN_FLAGS)
1905 ])
1906
1907 dnl
1908 dnl GLIBCPP_EXPORT_INSTALL_INFO
1909 dnl calculates gxx_install_dir
1910 dnl exports glibcpp_toolexecdir
1911 dnl exports glibcpp_toolexeclibdir
1912 dnl exports glibcpp_prefixdir
1913 dnl
1914 dnl Assumes cross_compiling bits already done, and with_cross_host in
1915 dnl particular
1916 dnl
1917 dnl GLIBCPP_EXPORT_INSTALL_INFO
1918 AC_DEFUN(GLIBCPP_EXPORT_INSTALL_INFO, [
1919 # Assumes glibcpp_builddir, glibcpp_srcdir are alreay set up and
1920 # exported correctly in GLIBCPP_CONFIGURE.
1921 glibcpp_toolexecdir=no
1922 glibcpp_toolexeclibdir=no
1923 glibcpp_prefixdir=${prefix}
1924
1925 # Process the option --with-gxx-include-dir=<path to include-files directory>
1926 AC_MSG_CHECKING([for --with-gxx-include-dir])
1927 AC_ARG_WITH(gxx-include-dir,
1928 [ --with-gxx-include-dir the installation directory for include files],
1929 [case "${withval}" in
1930 yes)
1931 AC_MSG_ERROR(Missing directory for --with-gxx-include-dir)
1932 gxx_include_dir=no
1933 ;;
1934 no)
1935 gxx_include_dir=no
1936 ;;
1937 *)
1938 gxx_include_dir=${withval}
1939 ;;
1940 esac], [gxx_include_dir=no])
1941 AC_MSG_RESULT($gxx_include_dir)
1942
1943 # Process the option "--enable-version-specific-runtime-libs"
1944 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
1945 AC_ARG_ENABLE(version-specific-runtime-libs,
1946 [ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ],
1947 [case "$enableval" in
1948 yes) version_specific_libs=yes ;;
1949 no) version_specific_libs=no ;;
1950 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
1951 esac],
1952 version_specific_libs=no)dnl
1953 # Option set, now we can test it.
1954 AC_MSG_RESULT($version_specific_libs)
1955
1956 # Default case for install directory for include files.
1957 if test $version_specific_libs = no && test $gxx_include_dir = no; then
1958 gxx_include_dir='$(prefix)'/include/c++/${gcc_version}
1959 fi
1960
1961 # Version-specific runtime libs processing.
1962 if test $version_specific_libs = yes; then
1963 # Need the gcc compiler version to know where to install libraries
1964 # and header files if --enable-version-specific-runtime-libs option
1965 # is selected.
1966 if test x"$gxx_include_dir" = x"no"; then
1967 gxx_include_dir='$(libdir)/gcc-lib/$(target_alias)/'${gcc_version}/include/c++
1968 fi
1969 glibcpp_toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
1970 glibcpp_toolexeclibdir='$(toolexecdir)/'${gcc_version}'$(MULTISUBDIR)'
1971 fi
1972
1973 # Calculate glibcpp_toolexecdir, glibcpp_toolexeclibdir
1974 # Install a library built with a cross compiler in tooldir, not libdir.
1975 if test x"$glibcpp_toolexecdir" = x"no"; then
1976 if test -n "$with_cross_host" &&
1977 test x"$with_cross_host" != x"no"; then
1978 glibcpp_toolexecdir='$(exec_prefix)/$(target_alias)'
1979 glibcpp_toolexeclibdir='$(toolexecdir)/lib$(MULTISUBDIR)'
1980 else
1981 glibcpp_toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
1982 glibcpp_toolexeclibdir='$(libdir)$(MULTISUBDIR)'
1983 fi
1984 fi
1985
1986 AC_MSG_CHECKING([for install location])
1987 AC_MSG_RESULT($gxx_include_dir)
1988
1989 AC_SUBST(glibcpp_prefixdir)
1990 AC_SUBST(gxx_include_dir)
1991 AC_SUBST(glibcpp_toolexecdir)
1992 AC_SUBST(glibcpp_toolexeclibdir)
1993 ])
1994
1995
1996 # Check for functions in math library.
1997 # Ulrich Drepper <drepper@cygnus.com>, 1998.
1998 #
1999 # This file can be copied and used freely without restrictions. It can
2000 # be used in projects which are not available under the GNU Public License
2001 # but which still want to provide support for the GNU gettext functionality.
2002 # Please note that the actual code is *not* freely available.
2003
2004 # serial 1
2005
2006 dnl AC_REPLACE_MATHFUNCS(FUNCTION...)
2007 AC_DEFUN(AC_REPLACE_MATHFUNCS,
2008 [AC_CHECK_FUNCS([$1], , [LIBMATHOBJS="$LIBMATHOBJS ${ac_func}.lo"])])
2009
2010
2011 dnl This macro searches for a GNU version of make. If a match is found, the
2012 dnl makefile variable `ifGNUmake' is set to the empty string, otherwise it is
2013 dnl set to "#". This is useful for including a special features in a Makefile,
2014 dnl which cannot be handled by other versions of make. The variable
2015 dnl _cv_gnu_make_command is set to the command to invoke GNU make if it exists,
2016 dnl the empty string otherwise.
2017 dnl
2018 dnl Here is an example of its use:
2019 dnl
2020 dnl Makefile.in might contain:
2021 dnl
2022 dnl # A failsafe way of putting a dependency rule into a makefile
2023 dnl $(DEPEND):
2024 dnl $(CC) -MM $(srcdir)/*.c > $(DEPEND)
2025 dnl
2026 dnl @ifGNUmake@ ifeq ($(DEPEND),$(wildcard $(DEPEND)))
2027 dnl @ifGNUmake@ include $(DEPEND)
2028 dnl @ifGNUmake@ endif
2029 dnl
2030 dnl Then configure.in would normally contain:
2031 dnl
2032 dnl CHECK_GNU_MAKE()
2033 dnl AC_OUTPUT(Makefile)
2034 dnl
2035 dnl Then perhaps to cause gnu make to override any other make, we could do
2036 dnl something like this (note that GNU make always looks for GNUmakefile first):
2037 dnl
2038 dnl if ! test x$_cv_gnu_make_command = x ; then
2039 dnl mv Makefile GNUmakefile
2040 dnl echo .DEFAULT: > Makefile ;
2041 dnl echo \ $_cv_gnu_make_command \$@ >> Makefile;
2042 dnl fi
2043 dnl
2044 dnl Then, if any (well almost any) other make is called, and GNU make also
2045 dnl exists, then the other make wraps the GNU make.
2046 dnl
2047 dnl @author John Darrington <j.darrington@elvis.murdoch.edu.au>
2048 dnl @version 1.1 #### replaced Id string now that Id is for lib-v3; pme
2049 dnl
2050 dnl #### Changes for libstdc++-v3: reformatting and linewrapping; prepending
2051 dnl #### GLIBCPP_ to the macro name; adding the :-make fallback in the
2052 dnl #### conditional's subshell (" --version" is not a command), using a
2053 dnl #### different option to grep(1).
2054 dnl #### -pme
2055 dnl #### Fixed Bourne shell portability bug (use ${MAKE-make}, not
2056 dnl #### ${MAKE:-make}).
2057 dnl #### -msokolov
2058 AC_DEFUN(
2059 GLIBCPP_CHECK_GNU_MAKE, [AC_CACHE_CHECK( for GNU make,_cv_gnu_make_command,
2060 _cv_gnu_make_command='' ;
2061 dnl Search all the common names for GNU make
2062 for a in "${MAKE-make}" make gmake gnumake ; do
2063 if ( $a --version 2> /dev/null | grep -c GNU > /dev/null )
2064 then
2065 _cv_gnu_make_command=$a ;
2066 break;
2067 fi
2068 done ;
2069 ) ;
2070 dnl If there was a GNU version, then set @ifGNUmake@ to the empty
2071 dnl string, '#' otherwise
2072 if test "x$_cv_gnu_make_command" != "x" ; then
2073 ifGNUmake='' ;
2074 else
2075 ifGNUmake='#' ;
2076 fi
2077 AC_SUBST(ifGNUmake)
2078 ])
2079
2080
2081 dnl Check for headers for, and arguments to, the setrlimit() function.
2082 dnl Used only in testsuite_hooks.h.
2083 AC_DEFUN(GLIBCPP_CHECK_SETRLIMIT_ancilliary, [
2084 AC_TRY_COMPILE([#include <unistd.h>
2085 #include <sys/time.h>
2086 #include <sys/resource.h>
2087 ], [ int f = RLIMIT_$1 ; ],
2088 [glibcpp_mresult=1], [glibcpp_mresult=0])
2089 AC_DEFINE_UNQUOTED(HAVE_MEMLIMIT_$1, $glibcpp_mresult,
2090 [Only used in build directory testsuite_hooks.h.])
2091 ])
2092 AC_DEFUN(GLIBCPP_CHECK_SETRLIMIT, [
2093 setrlimit_have_headers=yes
2094 AC_CHECK_HEADERS(unistd.h sys/time.h sys/resource.h,
2095 [],
2096 setrlimit_have_headers=no)
2097 # If don't have the headers, then we can't run the tests now, and we
2098 # won't be seeing any of these during testsuite compilation.
2099 if test $setrlimit_have_headers = yes; then
2100 # Can't do these in a loop, else the resulting syntax is wrong.
2101 GLIBCPP_CHECK_SETRLIMIT_ancilliary(DATA)
2102 GLIBCPP_CHECK_SETRLIMIT_ancilliary(RSS)
2103 GLIBCPP_CHECK_SETRLIMIT_ancilliary(VMEM)
2104 GLIBCPP_CHECK_SETRLIMIT_ancilliary(AS)
2105
2106 # Check for rlimit, setrlimit.
2107 AC_CACHE_VAL(ac_setrlimit, [
2108 AC_TRY_COMPILE([#include <unistd.h>
2109 #include <sys/time.h>
2110 #include <sys/resource.h>
2111 ],
2112 [ struct rlimit r; setrlimit(0, &r);],
2113 [ac_setrlimit=yes], [ac_setrlimit=no])
2114 ])
2115 fi
2116
2117 AC_MSG_CHECKING([for testsuite memory limit support])
2118 if test $setrlimit_have_headers = yes && test $ac_setrlimit = yes; then
2119 ac_mem_limits=yes
2120 AC_DEFINE(_GLIBCPP_MEM_LIMITS)
2121 else
2122 ac_mem_limits=no
2123 fi
2124 AC_MSG_RESULT($ac_mem_limits)
2125 ])
2126
2127
2128 dnl
2129 dnl Does any necessary configuration of the testsuite directory. Generates
2130 dnl the testsuite_hooks.h header.
2131 dnl
2132 dnl GLIBCPP_CONFIGURE_TESTSUITE [no args]
2133 AC_DEFUN(GLIBCPP_CONFIGURE_TESTSUITE, [
2134 GLIBCPP_CHECK_SETRLIMIT
2135
2136 # Look for setenv, so that extended locale tests can be performed.
2137 GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_3(setenv)
2138
2139 # Export file names for ABI checking.
2140 baseline_file="${glibcpp_srcdir}/config/abi/${abi_baseline_triplet}/baseline_symbols.txt"
2141 AC_SUBST(baseline_file)
2142
2143 # Don't do ABI checking unless native.
2144 AM_CONDITIONAL(GLIBCPP_BUILD_ABI_CHECK,
2145 test x"$build" = x"$host" && test -z "$with_cross_host")
2146 ])
2147
2148
2149 sinclude(../libtool.m4)
2150 dnl The lines below arrange for aclocal not to bring an installed
2151 dnl libtool.m4 into aclocal.m4, while still arranging for automake to
2152 dnl add a definition of LIBTOOL to Makefile.in.
2153 ifelse(,,,[AC_SUBST(LIBTOOL)
2154 AC_DEFUN([AM_PROG_LIBTOOL])
2155 AC_DEFUN([AC_LIBTOOL_DLOPEN])
2156 AC_DEFUN([AC_PROG_LD])
2157 ])
2158
2159
2160 # Check whether LC_MESSAGES is available in <locale.h>.
2161 # Ulrich Drepper <drepper@cygnus.com>, 1995.
2162 #
2163 # This file file be copied and used freely without restrictions. It can
2164 # be used in projects which are not available under the GNU Public License
2165 # but which still want to provide support for the GNU gettext functionality.
2166 # Please note that the actual code is *not* freely available.
2167
2168 # serial 1
2169
2170 AC_DEFUN(AC_LC_MESSAGES, [
2171 AC_CHECK_HEADER(locale.h, [
2172 AC_CACHE_CHECK([for LC_MESSAGES], ac_cv_val_LC_MESSAGES,
2173 [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
2174 ac_cv_val_LC_MESSAGES=yes, ac_cv_val_LC_MESSAGES=no)])
2175 if test $ac_cv_val_LC_MESSAGES = yes; then
2176 AC_DEFINE(HAVE_LC_MESSAGES)
2177 fi
2178 ])
2179 ])
2180
2181
2182 dnl
2183 dnl Check for whether the Boost-derived checks should be turned on.
2184 dnl
2185 dnl GLIBCPP_ENABLE_CONCEPT_CHECKS
2186 dnl --enable-concept-checks turns them on.
2187 dnl --disable-concept-checks leaves them off.
2188 dnl + Usage: GLIBCPP_ENABLE_CONCEPT_CHECKS[(DEFAULT)]
2189 dnl Where DEFAULT is either `yes' or `no'. If ommitted, it
2190 dnl defaults to `no'.
2191 AC_DEFUN(GLIBCPP_ENABLE_CONCEPT_CHECKS, [dnl
2192 define([GLIBCPP_ENABLE_CONCEPT_CHECKS_DEFAULT], ifelse($1, yes, yes, no))dnl
2193 AC_ARG_ENABLE(concept-checks,
2194 changequote(<<, >>)dnl
2195 << --enable-concept-checks use Boost-derived template checks [default=>>GLIBCPP_ENABLE_CONCEPT_CHECKS_DEFAULT],
2196 changequote([, ])dnl
2197 [case "$enableval" in
2198 yes) enable_concept_checks=yes ;;
2199 no) enable_concept_checks=no ;;
2200 *) AC_MSG_ERROR([Unknown argument to enable/disable concept checks]) ;;
2201 esac],
2202 enable_concept_checks=GLIBCPP_ENABLE_CONCEPT_CHECKS_DEFAULT)dnl
2203 dnl Option parsed, now set things appropriately
2204 if test x"$enable_concept_checks" = xyes; then
2205 AC_DEFINE(_GLIBCPP_CONCEPT_CHECKS)
2206 fi
2207 ])
2208
2209
2210 dnl
2211 dnl Add version tags to symbols in shared library (or not), additionally
2212 dnl marking other symbols as private/local (or not).
2213 dnl
2214 dnl GLIBCPP_ENABLE_SYMVERS
2215 dnl --enable-symvers=style adds a version script to the linker call when
2216 dnl creating the shared library. The choice of version script is
2217 dnl controlled by 'style'.
2218 dnl --disable-symvers does not.
2219 dnl + Usage: GLIBCPP_ENABLE_SYMVERS[(DEFAULT)]
2220 dnl Where DEFAULT is either `yes' or `no'. If ommitted, it
2221 dnl defaults to `no'. Passing `yes' tries to choose a default style
2222 dnl based on linker characteristics. Passing 'no' disables versioning.
2223 AC_DEFUN(GLIBCPP_ENABLE_SYMVERS, [dnl
2224 define([GLIBCPP_ENABLE_SYMVERS_DEFAULT], ifelse($1, yes, yes, no))dnl
2225 AC_ARG_ENABLE(symvers,
2226 changequote(<<, >>)dnl
2227 << --enable-symvers=style enables symbol versioning of the shared library [default=>>GLIBCPP_ENABLE_SYMVERS_DEFAULT],
2228 changequote([, ])dnl
2229 [case "$enableval" in
2230 yes) enable_symvers=yes ;;
2231 no) enable_symvers=no ;;
2232 # other names here, just as sanity checks
2233 #gnu|sun|etcetera) enable_symvers=$enableval ;;
2234 gnu) enable_symvers=$enableval ;;
2235 *) AC_MSG_ERROR([Unknown argument to enable/disable symvers]) ;;
2236 esac],
2237 enable_symvers=GLIBCPP_ENABLE_SYMVERS_DEFAULT)dnl
2238
2239 # If we never went through the GLIBCPP_CHECK_LINKER_FEATURES macro, then we
2240 # don't know enough about $LD to do tricks...
2241 if test x$enable_shared = xno ||
2242 test "x$LD" = x ||
2243 test x$glibcpp_gnu_ld_version = x; then
2244 enable_symvers=no
2245 fi
2246
2247 # Check to see if libgcc_s exists, indicating that shared libgcc is possible.
2248 if test $enable_symvers != no; then
2249 AC_MSG_CHECKING([for shared libgcc])
2250 ac_save_CFLAGS="$CFLAGS"
2251 CFLAGS=' -lgcc_s'
2252 AC_TRY_LINK(, [return 0], glibcpp_shared_libgcc=yes, glibcpp_shared_libgcc=no)
2253 CFLAGS="$ac_save_CFLAGS"
2254 AC_MSG_RESULT($glibcpp_shared_libgcc)
2255 fi
2256
2257 # For GNU ld, we need at least this version. It's 2.12 in the same format
2258 # as the tested-for version. See GLIBCPP_CHECK_LINKER_FEATURES for more.
2259 glibcpp_min_gnu_ld_version=21200
2260
2261 # Check to see if unspecified "yes" value can win, given results
2262 # above.
2263 if test $enable_symvers = yes ; then
2264 if test $with_gnu_ld = yes &&
2265 test $glibcpp_shared_libgcc = yes ;
2266 then
2267 if test $glibcpp_gnu_ld_version -ge $glibcpp_min_gnu_ld_version ; then
2268 enable_symvers=gnu
2269 else
2270 ac_test_CFLAGS="${CFLAGS+set}"
2271 ac_save_CFLAGS="$CFLAGS"
2272 CFLAGS='-shared -Wl,--version-script,conftest.map'
2273 enable_symvers=no
2274 changequote(,)
2275 echo 'FOO { global: f[a-z]o; local: *; };' > conftest.map
2276 changequote([,])
2277 AC_TRY_LINK([int foo;],, enable_symvers=gnu)
2278 if test "$ac_test_CFLAGS" = set; then
2279 CFLAGS="$ac_save_CFLAGS"
2280 else
2281 # this is the suspicious part
2282 CFLAGS=''
2283 fi
2284 rm -f conftest.map
2285 fi
2286 else
2287 # just fail for now
2288 enable_symvers=no
2289 fi
2290 fi
2291
2292 dnl Everything parsed; figure out what file to use.
2293 case $enable_symvers in
2294 no)
2295 SYMVER_MAP=config/linker-map.dummy
2296 ;;
2297 gnu)
2298 SYMVER_MAP=config/linker-map.gnu
2299 AC_DEFINE(_GLIBCPP_SYMVER)
2300 ;;
2301 esac
2302
2303 AC_SUBST(SYMVER_MAP)
2304 AM_CONDITIONAL(GLIBCPP_BUILD_VERSIONED_SHLIB, test $enable_symvers != no)
2305 AC_MSG_CHECKING([versioning on shared library symbols])
2306 AC_MSG_RESULT($enable_symvers)
2307 ])
2308
2309
2310 # isc-posix.m4 serial 1 (gettext-0.10.40)
2311 dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
2312 dnl This file is free software, distributed under the terms of the GNU
2313 dnl General Public License. As a special exception to the GNU General
2314 dnl Public License, this file may be distributed as part of a program
2315 dnl that contains a configuration script generated by Autoconf, under
2316 dnl the same distribution terms as the rest of that program.
2317
2318 # This test replaces the one in autoconf.
2319 # Currently this macro should have the same name as the autoconf macro
2320 # because gettext's gettext.m4 (distributed in the automake package)
2321 # still uses it. Otherwise, the use in gettext.m4 makes autoheader
2322 # give these diagnostics:
2323 # configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
2324 # configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
2325
2326 undefine([AC_ISC_POSIX])
2327
2328 AC_DEFUN([AC_ISC_POSIX],
2329 [
2330 dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
2331 AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
2332 ]
2333 )
2334
2335 # Add --enable-maintainer-mode option to configure.
2336 # From Jim Meyering
2337
2338 # serial 1
2339
2340 AC_DEFUN([AM_MAINTAINER_MODE],
2341 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
2342 dnl maintainer-mode is disabled by default
2343 AC_ARG_ENABLE(maintainer-mode,
2344 [ --enable-maintainer-mode enable make rules and dependencies not useful
2345 (and sometimes confusing) to the casual installer],
2346 USE_MAINTAINER_MODE=$enableval,
2347 USE_MAINTAINER_MODE=no)
2348 AC_MSG_RESULT($USE_MAINTAINER_MODE)
2349 AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes)
2350 MAINT=$MAINTAINER_MODE_TRUE
2351 AC_SUBST(MAINT)dnl
2352 ]
2353 )
2354
2355 # Define a conditional.
2356
2357 AC_DEFUN([AM_CONDITIONAL],
2358 [AC_SUBST($1_TRUE)
2359 AC_SUBST($1_FALSE)
2360 if $2; then
2361 $1_TRUE=
2362 $1_FALSE='#'
2363 else
2364 $1_TRUE='#'
2365 $1_FALSE=
2366 fi])
2367
2368 # Do all the work for Automake. This macro actually does too much --
2369 # some checks are only needed if your package does certain things.
2370 # But this isn't really a big deal.
2371
2372 # serial 1
2373
2374 dnl Usage:
2375 dnl AM_INIT_AUTOMAKE(package,version, [no-define])
2376
2377 AC_DEFUN([AM_INIT_AUTOMAKE],
2378 [AC_REQUIRE([AC_PROG_INSTALL])
2379 PACKAGE=[$1]
2380 AC_SUBST(PACKAGE)
2381 VERSION=[$2]
2382 AC_SUBST(VERSION)
2383 dnl test to see if srcdir already configured
2384 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
2385 AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
2386 fi
2387 ifelse([$3],,
2388 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
2389 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
2390 AC_REQUIRE([AM_SANITY_CHECK])
2391 AC_REQUIRE([AC_ARG_PROGRAM])
2392 dnl FIXME This is truly gross.
2393 missing_dir=`cd $ac_aux_dir && pwd`
2394 AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
2395 AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
2396 AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
2397 AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
2398 AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
2399 AC_REQUIRE([AC_PROG_MAKE_SET])])
2400
2401 #
2402 # Check to make sure that the build environment is sane.
2403 #
2404
2405 AC_DEFUN([AM_SANITY_CHECK],
2406 [AC_MSG_CHECKING([whether build environment is sane])
2407 # Just in case
2408 sleep 1
2409 echo timestamp > conftestfile
2410 # Do `set' in a subshell so we don't clobber the current shell's
2411 # arguments. Must try -L first in case configure is actually a
2412 # symlink; some systems play weird games with the mod time of symlinks
2413 # (eg FreeBSD returns the mod time of the symlink's containing
2414 # directory).
2415 if (
2416 set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
2417 if test "[$]*" = "X"; then
2418 # -L didn't work.
2419 set X `ls -t $srcdir/configure conftestfile`
2420 fi
2421 if test "[$]*" != "X $srcdir/configure conftestfile" \
2422 && test "[$]*" != "X conftestfile $srcdir/configure"; then
2423
2424 # If neither matched, then we have a broken ls. This can happen
2425 # if, for instance, CONFIG_SHELL is bash and it inherits a
2426 # broken ls alias from the environment. This has actually
2427 # happened. Such a system could not be considered "sane".
2428 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
2429 alias in your environment])
2430 fi
2431
2432 test "[$]2" = conftestfile
2433 )
2434 then
2435 # Ok.
2436 :
2437 else
2438 AC_MSG_ERROR([newly created file is older than distributed files!
2439 Check your system clock])
2440 fi
2441 rm -f conftest*
2442 AC_MSG_RESULT(yes)])
2443
2444 dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
2445 dnl The program must properly implement --version.
2446 AC_DEFUN([AM_MISSING_PROG],
2447 [AC_MSG_CHECKING(for working $2)
2448 # Run test in a subshell; some versions of sh will print an error if
2449 # an executable is not found, even if stderr is redirected.
2450 # Redirect stdin to placate older versions of autoconf. Sigh.
2451 if ($2 --version) < /dev/null > /dev/null 2>&1; then
2452 $1=$2
2453 AC_MSG_RESULT(found)
2454 else
2455 $1="$3/missing $2"
2456 AC_MSG_RESULT(missing)
2457 fi
2458 AC_SUBST($1)])
2459
2460 # Like AC_CONFIG_HEADER, but automatically create stamp file.
2461
2462 AC_DEFUN([AM_CONFIG_HEADER],
2463 [AC_PREREQ([2.12])
2464 AC_CONFIG_HEADER([$1])
2465 dnl When config.status generates a header, we must update the stamp-h file.
2466 dnl This file resides in the same directory as the config header
2467 dnl that is generated. We must strip everything past the first ":",
2468 dnl and everything past the last "/".
2469 AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
2470 ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
2471 <<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
2472 <<am_indx=1
2473 for am_file in <<$1>>; do
2474 case " <<$>>CONFIG_HEADERS " in
2475 *" <<$>>am_file "*<<)>>
2476 echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
2477 ;;
2478 esac
2479 am_indx=`expr "<<$>>am_indx" + 1`
2480 done<<>>dnl>>)
2481 changequote([,]))])
2482