2000-04-21 22:33:34 +02:00
|
|
|
# Process this file with autoconf to produce a configure script, like so:
|
2002-03-18 22:41:02 +01:00
|
|
|
# aclocal && autoconf && autoheader && automake
|
2000-04-21 22:33:34 +02:00
|
|
|
|
2004-03-11 01:27:41 +01:00
|
|
|
AC_PREREQ(2.59)
|
2003-08-11 07:26:58 +02:00
|
|
|
AC_INIT(package-unused, version-unused,, libstdc++)
|
2003-08-05 04:00:18 +02:00
|
|
|
AC_CONFIG_SRCDIR(src/ios.cc)
|
|
|
|
AC_CONFIG_HEADER(config.h)
|
2001-02-01 22:08:05 +01:00
|
|
|
|
2002-05-08 06:38:00 +02:00
|
|
|
# This works around the fact that libtool configuration may change LD
|
|
|
|
# for this particular configuration, but some shells, instead of
|
|
|
|
# keeping the changes in LD private, export them just because LD is
|
2002-06-18 21:07:12 +02:00
|
|
|
# exported. Only used at the end of this file.
|
2003-08-05 04:00:18 +02:00
|
|
|
### am handles this now? ORIGINAL_LD_FOR_MULTILIBS=$LD
|
2002-05-08 06:38:00 +02:00
|
|
|
|
2001-08-14 03:24:30 +02:00
|
|
|
# For libtool versioning info, format is CURRENT:REVISION:AGE
|
2004-11-08 21:06:30 +01:00
|
|
|
libtool_VERSION=6:4:0
|
2001-08-14 03:24:30 +02:00
|
|
|
AC_SUBST(libtool_VERSION)
|
2000-04-21 22:33:34 +02:00
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
# Find the rest of the source tree framework.
|
2004-06-15 16:47:55 +02:00
|
|
|
AM_ENABLE_MULTILIB(, ..)
|
2002-06-26 05:53:45 +02:00
|
|
|
|
2001-08-10 08:50:34 +02:00
|
|
|
# Gets build, host, target, *_vendor, *_cpu, *_os, etc.
|
2002-06-18 21:07:12 +02:00
|
|
|
#
|
|
|
|
# You will slowly go insane if you do not grok the following fact: when
|
|
|
|
# building v3 as part of the compiler, the top-level /target/ becomes the
|
2003-08-05 04:00:18 +02:00
|
|
|
# library's /host/. configure then causes --target to default to --host,
|
2002-06-18 21:07:12 +02:00
|
|
|
# exactly like any other package using autoconf. Therefore, 'target' and
|
|
|
|
# 'host' will always be the same. This makes sense both for native and
|
|
|
|
# cross compilers, just think about it for a little while. :-)
|
|
|
|
#
|
|
|
|
# Also, if v3 is being configured as part of a cross compiler, the top-level
|
|
|
|
# configure script will pass the "real" host as $with_cross_host.
|
|
|
|
#
|
2003-08-05 04:00:18 +02:00
|
|
|
# Do not delete or change the following two lines. For why, see
|
|
|
|
# http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html
|
2000-04-21 22:33:34 +02:00
|
|
|
AC_CANONICAL_SYSTEM
|
2003-08-05 04:00:18 +02:00
|
|
|
target_alias=${target_alias-$host_alias}
|
|
|
|
|
|
|
|
# Handy for debugging:
|
|
|
|
#AC_MSG_NOTICE($build / $host / $target / $host_alias / $target_alias); sleep 5
|
|
|
|
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
if test "$build" != "$host"; then
|
|
|
|
# We are being configured with some form of cross compiler.
|
|
|
|
GLIBCXX_IS_NATIVE=false
|
2003-08-27 21:28:57 +02:00
|
|
|
GCC_NO_EXECUTABLES
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
else
|
|
|
|
GLIBCXX_IS_NATIVE=true
|
|
|
|
fi
|
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
# Sets up automake. Must come after AC_CANONICAL_SYSTEM. Each of the
|
|
|
|
# following is magically included in AUTOMAKE_OPTIONS in each Makefile.am.
|
|
|
|
# 1.x: minimum required version
|
|
|
|
# no-define: PACKAGE and VERSION will not be #define'd in config.h (a bunch
|
|
|
|
# of other PACKAGE_* variables will, however, and there's nothing
|
2003-08-11 07:26:58 +02:00
|
|
|
# we can do about that; they come from AC_INIT).
|
2003-08-05 04:00:18 +02:00
|
|
|
# foreign: we don't follow the normal rules for GNU packages (no COPYING
|
|
|
|
# file in the top srcdir, etc, etc), so stop complaining.
|
|
|
|
# no-dependencies: turns off auto dependency generation (just for now)
|
2003-12-17 00:44:53 +01:00
|
|
|
# -Wall: turns on all automake warnings...
|
|
|
|
# -Wno-portability: ...except this one, since GNU make is now required.
|
2004-08-23 12:18:31 +02:00
|
|
|
AM_INIT_AUTOMAKE([1.9.1 no-define foreign no-dependencies -Wall -Wno-portability -Wno-override])
|
2003-08-05 04:00:18 +02:00
|
|
|
|
|
|
|
# Runs configure.host, finds CC, CXX, and assorted other critical bits. Sets
|
|
|
|
# up critical shell variables.
|
|
|
|
GLIBCXX_CONFIGURE
|
|
|
|
|
|
|
|
#AC_MSG_NOTICE([====== Starting libtool configuration])
|
2000-04-21 22:33:34 +02:00
|
|
|
AC_LIBTOOL_DLOPEN
|
2000-07-26 08:51:38 +02:00
|
|
|
AM_PROG_LIBTOOL
|
2000-10-31 02:56:19 +01:00
|
|
|
AC_SUBST(enable_shared)
|
|
|
|
AC_SUBST(enable_static)
|
2003-08-05 04:00:18 +02:00
|
|
|
#AC_MSG_NOTICE([====== Finished libtool configuration]) ; sleep 10
|
2001-06-01 11:22:05 +02:00
|
|
|
|
acinclude.m4 (GLIBCXX_CONDITIONAL): New macro.
2003-08-27 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_CONDITIONAL): New macro. Wrap
AM_CONDITIONAL. Replace all calls to AM_CONDITIONAL with this one.
(GLIBCXX_ENABLE_HOSTED): New macro, sets new variable is_hosted,
used elsewhere in this file.
(GLIBCXX_EVALUATE_CONDITIONALS): New macro...
* configure.ac: ...called here to expand all conditionals.
* Makefile.am: Conditionalize SUBDIRS on GLIBCXX_HOSTED.
* include/Makefile.am: Remove redundant gxx_include_dir assignment.
(install-freestanding-headers): New target, a subset of
install-headers. Conditionalize install-data-local on GLIBCXX_HOSTED.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerated.
From-SVN: r70854
2003-08-27 21:06:56 +02:00
|
|
|
# Possibly disable most of the library.
|
|
|
|
## XXX Consider skipping unncessary tests altogether in this case, rather
|
|
|
|
## than just ignoring the results. Faster /and/ more correct, win win.
|
|
|
|
GLIBCXX_ENABLE_HOSTED
|
|
|
|
|
2003-06-30 19:40:13 +02:00
|
|
|
# Check for support bits and g++ features that don't require linking.
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_ENABLE_SJLJ_EXCEPTIONS
|
acinclude.m4 (GLIBCXX_CONDITIONAL): New macro.
2003-08-27 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_CONDITIONAL): New macro. Wrap
AM_CONDITIONAL. Replace all calls to AM_CONDITIONAL with this one.
(GLIBCXX_ENABLE_HOSTED): New macro, sets new variable is_hosted,
used elsewhere in this file.
(GLIBCXX_EVALUATE_CONDITIONALS): New macro...
* configure.ac: ...called here to expand all conditionals.
* Makefile.am: Conditionalize SUBDIRS on GLIBCXX_HOSTED.
* include/Makefile.am: Remove redundant gxx_include_dir assignment.
(install-freestanding-headers): New target, a subset of
install-headers. Conditionalize install-data-local on GLIBCXX_HOSTED.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerated.
From-SVN: r70854
2003-08-27 21:06:56 +02:00
|
|
|
GLIBCXX_ENABLE_PCH($is_hosted)
|
2000-04-21 22:33:34 +02:00
|
|
|
|
2003-06-30 19:40:13 +02:00
|
|
|
# Enable all the variable C++ runtime options.
|
|
|
|
# NB: C_MBCHAR must come early.
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_ENABLE_CSTDIO
|
|
|
|
GLIBCXX_ENABLE_CLOCALE
|
2004-03-13 07:54:25 +01:00
|
|
|
GLIBCXX_ENABLE_ALLOCATOR
|
2003-08-05 04:00:18 +02:00
|
|
|
GLIBCXX_ENABLE_CHEADERS($c_model) dnl c_model from configure.host
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_ENABLE_C_MBCHAR([yes])
|
|
|
|
GLIBCXX_ENABLE_C99([yes])
|
|
|
|
GLIBCXX_ENABLE_LONG_LONG([yes])
|
|
|
|
GLIBCXX_ENABLE_THREADS
|
2003-08-05 04:00:18 +02:00
|
|
|
GLIBCXX_ENABLE_CONCEPT_CHECKS([no])
|
|
|
|
GLIBCXX_ENABLE_DEBUG_FLAGS(["-g3 -O0"])
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_ENABLE_DEBUG([no])
|
2003-08-05 04:00:18 +02:00
|
|
|
GLIBCXX_ENABLE_CXX_FLAGS
|
2004-09-28 10:58:35 +02:00
|
|
|
GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING([no])
|
2000-04-21 22:33:34 +02:00
|
|
|
|
2002-11-21 08:34:30 +01:00
|
|
|
# No surprises, no surprises...
|
2004-02-27 01:49:50 +01:00
|
|
|
if test $atomicity_dir = cpu/generic ; then
|
2003-04-17 05:27:05 +02:00
|
|
|
AC_MSG_WARN([No native atomic operations are provided for this platform.])
|
2002-11-21 08:34:30 +01:00
|
|
|
if test $target_thread_file = single; then
|
|
|
|
AC_MSG_WARN([They cannot be faked when thread support is disabled.])
|
|
|
|
AC_MSG_WARN([Thread-safety of certain classes is not guaranteed.])
|
|
|
|
else
|
|
|
|
AC_MSG_WARN([They will be faked using a mutex.])
|
|
|
|
AC_MSG_WARN([Performance of certain classes will degrade as a result.])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
if $GLIBCXX_IS_NATIVE; then
|
2000-04-21 22:33:34 +02:00
|
|
|
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
# We can do more elaborate tests that assume a working linker.
|
|
|
|
CANADIAN=no
|
|
|
|
|
|
|
|
# Check for available headers.
|
|
|
|
AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h machine/endian.h \
|
|
|
|
machine/param.h sys/machine.h fp.h locale.h float.h inttypes.h gconv.h \
|
2005-01-03 22:31:39 +01:00
|
|
|
sys/types.h sys/ipc.h sys/sem.h])
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
|
|
|
|
GLIBCXX_CHECK_COMPILER_FEATURES
|
|
|
|
GLIBCXX_CHECK_LINKER_FEATURES
|
|
|
|
GLIBCXX_CHECK_MATH_SUPPORT
|
|
|
|
GLIBCXX_CHECK_BUILTIN_MATH_SUPPORT
|
|
|
|
GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT
|
|
|
|
GLIBCXX_CHECK_WCHAR_T_SUPPORT
|
|
|
|
GLIBCXX_CHECK_STDLIB_SUPPORT
|
|
|
|
|
|
|
|
# For showmanyc_helper().
|
|
|
|
AC_CHECK_HEADERS(sys/ioctl.h sys/filio.h)
|
|
|
|
GLIBCXX_CHECK_POLL
|
|
|
|
GLIBCXX_CHECK_S_ISREG_OR_S_IFREG
|
|
|
|
|
|
|
|
# For xsputn_2().
|
|
|
|
AC_CHECK_HEADERS(sys/uio.h)
|
|
|
|
GLIBCXX_CHECK_WRITEV
|
|
|
|
|
2003-10-22 17:51:55 +02:00
|
|
|
# For the __streamoff_base_type typedef.
|
|
|
|
GLIBCXX_CHECK_INT64_T
|
|
|
|
|
|
|
|
# For LFS support.
|
|
|
|
GLIBCXX_CHECK_LFS
|
|
|
|
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
AC_LC_MESSAGES
|
|
|
|
|
|
|
|
AC_TRY_COMPILE(
|
|
|
|
[#include <setjmp.h>],
|
|
|
|
[sigjmp_buf env;
|
|
|
|
while (! sigsetjmp (env, 1))
|
|
|
|
siglongjmp (env, 1);
|
|
|
|
],
|
|
|
|
[AC_DEFINE(HAVE_SIGSETJMP, 1, [Define if sigsetjmp is available.])])
|
|
|
|
|
|
|
|
AC_FUNC_MMAP
|
|
|
|
|
|
|
|
else
|
2000-12-13 10:25:44 +01:00
|
|
|
|
2002-06-18 21:07:12 +02:00
|
|
|
# This lets us hard-code the functionality we know we'll have in the cross
|
|
|
|
# target environment. "Let" is a sugar-coated word placed on an especially
|
|
|
|
# dull and tedious hack, actually.
|
|
|
|
#
|
2003-07-05 06:05:45 +02:00
|
|
|
# Here's why GLIBCXX_CHECK_MATH_SUPPORT, and other autoconf macros
|
2002-06-18 21:07:12 +02:00
|
|
|
# that involve linking, can't be used:
|
|
|
|
# "cannot open sim-crt0.o"
|
|
|
|
# "cannot open crt0.o"
|
|
|
|
# etc. All this is because there currently exists no unified, consistent
|
|
|
|
# way for top level CC information to be passed down to target directories:
|
|
|
|
# newlib includes, newlib linking info, libgloss versus newlib crt0.o, etc.
|
|
|
|
# When all of that is done, all of this hokey, excessive AC_DEFINE junk for
|
|
|
|
# crosses can be removed.
|
|
|
|
|
|
|
|
# If Canadian cross, then don't pick up tools from the build directory.
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
# Used only in GLIBCXX_EXPORT_INCLUDES.
|
2003-08-05 04:00:18 +02:00
|
|
|
if test -n "$with_cross_host" &&
|
2003-08-28 02:24:52 +02:00
|
|
|
test x"$build_alias" != x"$with_cross_host" &&
|
2003-08-05 04:00:18 +02:00
|
|
|
test x"$build" != x"$target";
|
|
|
|
then
|
2000-04-21 22:33:34 +02:00
|
|
|
CANADIAN=yes
|
|
|
|
else
|
|
|
|
CANADIAN=no
|
|
|
|
fi
|
|
|
|
|
2001-12-03 23:28:57 +01:00
|
|
|
# Construct crosses by hand, eliminating bits that need ld...
|
2003-07-05 06:05:45 +02:00
|
|
|
# GLIBCXX_CHECK_COMPILER_FEATURES
|
|
|
|
# GLIBCXX_CHECK_BUILTIN_MATH_SUPPORT
|
|
|
|
# GLIBCXX_CHECK_MATH_SUPPORT
|
2001-12-03 23:28:57 +01:00
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
# First, test for "known" system libraries. We may be using newlib even
|
|
|
|
# on a hosted environment.
|
|
|
|
if test "x${with_newlib}" = "xyes"; then
|
|
|
|
os_include_dir="os/newlib"
|
|
|
|
AC_DEFINE(HAVE_HYPOT)
|
|
|
|
|
|
|
|
# GLIBCXX_CHECK_STDLIB_SUPPORT
|
|
|
|
AC_DEFINE(HAVE_STRTOF)
|
|
|
|
# AC_FUNC_MMAP
|
|
|
|
AC_DEFINE(HAVE_MMAP)
|
|
|
|
|
|
|
|
AC_DEFINE(HAVE_ACOSF)
|
|
|
|
AC_DEFINE(HAVE_ASINF)
|
|
|
|
AC_DEFINE(HAVE_ATAN2F)
|
|
|
|
AC_DEFINE(HAVE_ATANF)
|
|
|
|
AC_DEFINE(HAVE_CEILF)
|
|
|
|
AC_DEFINE(HAVE_COPYSIGN)
|
|
|
|
AC_DEFINE(HAVE_COPYSIGNF)
|
|
|
|
AC_DEFINE(HAVE_COSF)
|
|
|
|
AC_DEFINE(HAVE_COSHF)
|
|
|
|
AC_DEFINE(HAVE_EXPF)
|
|
|
|
AC_DEFINE(HAVE_FABSF)
|
|
|
|
AC_DEFINE(HAVE_FLOORF)
|
|
|
|
AC_DEFINE(HAVE_FMODF)
|
|
|
|
AC_DEFINE(HAVE_FREXPF)
|
|
|
|
AC_DEFINE(HAVE_LDEXPF)
|
|
|
|
AC_DEFINE(HAVE_LOG10F)
|
|
|
|
AC_DEFINE(HAVE_LOGF)
|
|
|
|
AC_DEFINE(HAVE_MODFF)
|
|
|
|
AC_DEFINE(HAVE_POWF)
|
|
|
|
AC_DEFINE(HAVE_SINF)
|
|
|
|
AC_DEFINE(HAVE_SINHF)
|
|
|
|
AC_DEFINE(HAVE_SQRTF)
|
|
|
|
AC_DEFINE(HAVE_TANF)
|
|
|
|
AC_DEFINE(HAVE_TANHF)
|
2003-12-29 20:26:16 +01:00
|
|
|
|
|
|
|
AC_DEFINE(HAVE_S_ISREG)
|
|
|
|
AC_DEFINE(HAVE_S_IFREG)
|
2003-08-05 04:00:18 +02:00
|
|
|
else
|
|
|
|
m4_include([crossconfig.m4])
|
|
|
|
fi
|
2001-12-03 23:28:57 +01:00
|
|
|
|
|
|
|
# At some point, we should differentiate between architectures
|
|
|
|
# like x86, which have long double versions, and alpha/powerpc/etc.,
|
|
|
|
# which don't. For the time being, punt.
|
|
|
|
if test x"long_double_math_on_this_cpu" = x"yes"; then
|
|
|
|
AC_DEFINE(HAVE_ACOSL)
|
|
|
|
AC_DEFINE(HAVE_ASINL)
|
|
|
|
AC_DEFINE(HAVE_ATAN2L)
|
|
|
|
AC_DEFINE(HAVE_ATANL)
|
|
|
|
AC_DEFINE(HAVE_CEILL)
|
|
|
|
AC_DEFINE(HAVE_COPYSIGNL)
|
|
|
|
AC_DEFINE(HAVE_COSL)
|
|
|
|
AC_DEFINE(HAVE_COSHL)
|
|
|
|
AC_DEFINE(HAVE_EXPL)
|
|
|
|
AC_DEFINE(HAVE_FABSL)
|
|
|
|
AC_DEFINE(HAVE_FLOORL)
|
|
|
|
AC_DEFINE(HAVE_FMODL)
|
|
|
|
AC_DEFINE(HAVE_FREXPL)
|
|
|
|
AC_DEFINE(HAVE_LDEXPL)
|
|
|
|
AC_DEFINE(HAVE_LOG10L)
|
|
|
|
AC_DEFINE(HAVE_LOGL)
|
|
|
|
AC_DEFINE(HAVE_MODFL)
|
|
|
|
AC_DEFINE(HAVE_POWL)
|
|
|
|
AC_DEFINE(HAVE_SINCOSL)
|
|
|
|
AC_DEFINE(HAVE_SINL)
|
|
|
|
AC_DEFINE(HAVE_SINHL)
|
|
|
|
AC_DEFINE(HAVE_SQRTL)
|
|
|
|
AC_DEFINE(HAVE_TANL)
|
|
|
|
AC_DEFINE(HAVE_TANHL)
|
|
|
|
fi
|
2002-06-18 21:07:12 +02:00
|
|
|
|
2000-04-21 22:33:34 +02:00
|
|
|
fi
|
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
# This depends on GLIBCXX CHECK_LINKER_FEATURES, but without it assumes no.
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_ENABLE_SYMVERS([yes])
|
2001-08-07 05:38:33 +02:00
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
# This depends on GLIBCXX_ENABLE_SYMVERS and GLIBCXX_IS_NATIVE.
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_CONFIGURE_TESTSUITE
|
2003-06-17 07:46:01 +02:00
|
|
|
|
2001-07-13 18:47:56 +02:00
|
|
|
# Propagate the target-specific source directories through the build chain.
|
2004-02-27 01:49:50 +01:00
|
|
|
ATOMICITY_SRCDIR=config/${atomicity_dir}
|
|
|
|
ATOMIC_WORD_SRCDIR=config/${atomic_word_dir}
|
2003-07-04 09:14:54 +02:00
|
|
|
OS_INC_SRCDIR=config/${os_include_dir}
|
2004-07-03 01:40:19 +02:00
|
|
|
ABI_TWEAKS_SRCDIR=config/${abi_tweaks_dir}
|
2004-02-27 01:49:50 +01:00
|
|
|
AC_SUBST(ATOMICITY_SRCDIR)
|
|
|
|
AC_SUBST(ATOMIC_WORD_SRCDIR)
|
2004-07-03 01:40:19 +02:00
|
|
|
AC_SUBST(ABI_TWEAKS_SRCDIR)
|
2003-07-04 09:14:54 +02:00
|
|
|
AC_SUBST(OS_INC_SRCDIR)
|
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
# Determine cross-compile flags and AM_CONDITIONALs.
|
|
|
|
#AC_SUBST(GLIBCXX_IS_NATIVE)
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
#AM_CONDITIONAL(CANADIAN, test $CANADIAN = yes)
|
2003-08-05 04:00:18 +02:00
|
|
|
# from GLIBCXX_CHECK_COMPLEX_MATH_SUPPORT:
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
#AM_CONDITIONAL(GLIBCXX_BUILD_LIBMATH, test $need_libmath = yes)
|
acinclude.m4 (GLIBCXX_CONDITIONAL): New macro.
2003-08-27 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_CONDITIONAL): New macro. Wrap
AM_CONDITIONAL. Replace all calls to AM_CONDITIONAL with this one.
(GLIBCXX_ENABLE_HOSTED): New macro, sets new variable is_hosted,
used elsewhere in this file.
(GLIBCXX_EVALUATE_CONDITIONALS): New macro...
* configure.ac: ...called here to expand all conditionals.
* Makefile.am: Conditionalize SUBDIRS on GLIBCXX_HOSTED.
* include/Makefile.am: Remove redundant gxx_include_dir assignment.
(install-freestanding-headers): New target, a subset of
install-headers. Conditionalize install-data-local on GLIBCXX_HOSTED.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerated.
From-SVN: r70854
2003-08-27 21:06:56 +02:00
|
|
|
GLIBCXX_EVALUATE_CONDITIONALS
|
2000-11-16 02:44:03 +01:00
|
|
|
|
2000-10-29 23:32:30 +01:00
|
|
|
AC_CACHE_SAVE
|
2000-04-21 22:33:34 +02:00
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
if test ${multilib} = yes; then
|
2000-04-21 22:33:34 +02:00
|
|
|
multilib_arg="--enable-multilib"
|
|
|
|
else
|
|
|
|
multilib_arg=
|
|
|
|
fi
|
|
|
|
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
# Export all the install information.
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_EXPORT_INSTALL_INFO
|
2000-10-15 10:45:33 +02:00
|
|
|
|
2002-12-16 20:02:01 +01:00
|
|
|
# Export all the include and flag information to Makefiles.
|
2003-07-05 06:05:45 +02:00
|
|
|
GLIBCXX_EXPORT_INCLUDES
|
|
|
|
GLIBCXX_EXPORT_FLAGS
|
2000-10-12 13:45:23 +02:00
|
|
|
|
2001-05-03 22:35:18 +02:00
|
|
|
if ${CONFIG_SHELL-/bin/sh} ./libtool --tag CXX --features |
|
2003-08-05 04:00:18 +02:00
|
|
|
grep "enable shared" > /dev/null;
|
|
|
|
then
|
2001-05-03 22:35:18 +02:00
|
|
|
LIBSUPCXX_PICFLAGS=-prefer-pic
|
|
|
|
else
|
|
|
|
LIBSUPCXX_PICFLAGS=
|
|
|
|
fi
|
|
|
|
AC_SUBST(LIBSUPCXX_PICFLAGS)
|
|
|
|
|
2003-08-05 04:00:18 +02:00
|
|
|
dnl In autoconf 2.5x, AC_OUTPUT is replaced by four AC_CONFIG_* macros,
|
|
|
|
dnl which can all be called multiple times as needed, plus one (different)
|
2003-10-20 20:27:17 +02:00
|
|
|
dnl AC_OUTPUT macro. This one lists the files to be created:
|
2003-08-27 02:38:28 +02:00
|
|
|
AC_CONFIG_FILES( \
|
2003-08-05 04:00:18 +02:00
|
|
|
Makefile \
|
2003-08-27 02:38:28 +02:00
|
|
|
AC_FOREACH([DIR], glibcxx_SUBDIRS, [DIR/Makefile ])
|
|
|
|
)
|
2003-08-05 04:00:18 +02:00
|
|
|
AC_CONFIG_FILES([scripts/check_survey],[chmod +x scripts/check_survey])
|
|
|
|
AC_CONFIG_FILES([scripts/testsuite_flags],[chmod +x scripts/testsuite_flags])
|
|
|
|
|
|
|
|
dnl These commands are run at the end of config.status:
|
|
|
|
AC_CONFIG_COMMANDS([default],
|
|
|
|
[if test -n "$CONFIG_FILES"; then
|
|
|
|
# Multilibs need MULTISUBDIR defined correctly in certain makefiles so
|
|
|
|
# that multilib installs will end up installed in the correct place.
|
|
|
|
# The testsuite needs it for multilib-aware ABI baseline files.
|
|
|
|
# To work around this not being passed down from config-ml.in ->
|
|
|
|
# srcdir/Makefile.am -> srcdir/{src,libsupc++,...}/Makefile.am, manually
|
|
|
|
# append it here. Only modify Makefiles that have just been created.
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
#
|
|
|
|
# Also, get rid of this simulated-VPATH thing that automake does.
|
|
|
|
cat > vpsed << \_EOF
|
|
|
|
s!`test -f '$<' || echo '$(srcdir)/'`!!
|
|
|
|
_EOF
|
2003-08-27 02:38:28 +02:00
|
|
|
for i in $SUBDIRS; do
|
2003-08-05 04:00:18 +02:00
|
|
|
case $CONFIG_FILES in
|
|
|
|
*${i}/Makefile*)
|
|
|
|
#echo "Adding MULTISUBDIR to $i/Makefile"
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
sed -f vpsed $i/Makefile > tmp
|
|
|
|
grep '^MULTISUBDIR =' Makefile >> tmp
|
|
|
|
mv tmp $i/Makefile
|
2003-08-05 04:00:18 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES and LIBSUPCXX_INCLUDES.
2003-08-17 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_EXPORT_INCLUDES): Remove LIBMATH_INCLUDES
and LIBSUPCXX_INCLUDES. Re-purpose TOPLEVEL_INCLUDES to refer to
things from the top level.
* configure.ac (GLIBCXX_IS_NATIVE): Determine earlier and re-order.
Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
(currently unused). Strip the fake-VPATH shell fragment from
automake-generated rules, if present.
* linkage.m4: Add comment.
* fragment.am: New file, containing factored-out common settings.
(AM_CPPFLAGS): Absorb the deprecated INCLUDES variable contents.
* Makefile.am: Include fragment.am. Remove common variables.
* include/Makefile.am: Likewise.
* libmath/Makefile.am: Likewise.
* libsupc++/Makefile.am: Likewise.
* po/Makefile.am: Likewise. Print rules during check.
* src/Makefile.am: Likewise.
* testsuite/Makefile.am: Likewise.
* aclocal.m4, configure, Makefile.in, include/Makefile.in,
libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
src/Makefile.in, testsuite/Makefile.in: Regenerate.
From-SVN: r70522
2003-08-17 22:23:12 +02:00
|
|
|
rm vpsed
|
2003-01-10 05:51:48 +01:00
|
|
|
fi
|
2003-08-05 04:00:18 +02:00
|
|
|
(cd include && ${MAKE-make})
|
|
|
|
],
|
|
|
|
[
|
2003-08-27 02:38:28 +02:00
|
|
|
# Variables needed in config.status (file generation) which aren't already
|
|
|
|
# passed by autoconf.
|
|
|
|
SUBDIRS="$SUBDIRS"
|
2003-08-05 04:00:18 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl And this actually makes things happen:
|
|
|
|
AC_OUTPUT
|