1 # FIXME: We temporarily define our own version of AC_PROG_CC. This is
2 # copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We
3 # are probably using a cross compiler, which will not be able to fully
4 # link an executable. This should really be fixed in autoconf
7 AC_DEFUN(BOEHM_CONFIGURE,
9 dnl Default to --enable-multilib
10 AC_ARG_ENABLE(multilib,
11 [ --enable-multilib build many library versions (default)],
12 [case "${enableval}" in
15 *) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
16 esac], [multilib=yes])dnl
18 dnl We may get other options which we don't document:
19 dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
21 if test "[$]{srcdir}" = "."; then
22 if test "[$]{with_target_subdir}" != "."; then
23 boehm_gc_basedir="[$]{srcdir}/[$]{with_multisrctop}../$1"
25 boehm_gc_basedir="[$]{srcdir}/[$]{with_multisrctop}$1"
28 boehm_gc_basedir="[$]{srcdir}/$1"
30 AC_SUBST(boehm_gc_basedir)
34 AM_INIT_AUTOMAKE(boehm-gc, 4.13a2, no-define)
36 # FIXME: We temporarily define our own version of AC_PROG_CC. This is
37 # copied from autoconf 2.12, but does not call AC_PROG_CC_WORKS. We
38 # are probably using a cross compiler, which will not be able to fully
39 # link an executable. This should really be fixed in autoconf
42 AC_DEFUN(LIB_AC_PROG_CC,
43 [AC_BEFORE([$0], [AC_PROG_CPP])dnl
44 AC_CHECK_PROG(CC, gcc, gcc)
45 if test -z "$CC"; then
46 AC_CHECK_PROG(CC, cc, cc, , , /usr/ucb/cc)
47 test -z "$CC" && AC_MSG_ERROR([no acceptable cc found in \$PATH])
52 if test $ac_cv_prog_gcc = yes; then
54 dnl Check whether -g works, even if CFLAGS is set, in case the package
55 dnl plays around with CFLAGS (such as to build both debugging and
56 dnl normal versions of a library), tasteless as that idea is.
57 ac_test_CFLAGS="${CFLAGS+set}"
58 ac_save_CFLAGS="$CFLAGS"
61 if test "$ac_test_CFLAGS" = set; then
62 CFLAGS="$ac_save_CFLAGS"
63 elif test $ac_cv_prog_cc_g = yes; then
70 test "${CFLAGS+set}" = set || CFLAGS="-g"
76 # Likewise for AC_PROG_CXX.
77 AC_DEFUN(LIB_AC_PROG_CXX,
78 [AC_BEFORE([$0], [AC_PROG_CXXCPP])dnl
79 AC_CHECK_PROGS(CXX, $CCC c++ g++ gcc CC cxx cc++, gcc)
80 test -z "$CXX" && AC_MSG_ERROR([no acceptable c++ found in \$PATH])
84 if test $ac_cv_prog_gxx = yes; then
86 dnl Check whether -g works, even if CXXFLAGS is set, in case the package
87 dnl plays around with CXXFLAGS (such as to build both debugging and
88 dnl normal versions of a library), tasteless as that idea is.
89 ac_test_CXXFLAGS="${CXXFLAGS+set}"
90 ac_save_CXXFLAGS="$CXXFLAGS"
93 if test "$ac_test_CXXFLAGS" = set; then
94 CXXFLAGS="$ac_save_CXXFLAGS"
95 elif test $ac_cv_prog_cxx_g = yes; then
102 test "${CXXFLAGS+set}" = set || CXXFLAGS="-g"
108 # AC_CHECK_TOOL does AC_REQUIRE (AC_CANONICAL_BUILD). If we don't
109 # run it explicitly here, it will be run implicitly before
110 # NEWLIB_CONFIGURE, which doesn't work because that means that it will
111 # be run before AC_CANONICAL_HOST.
114 AC_CHECK_TOOL(AS, as)
115 AC_CHECK_TOOL(AR, ar)
116 AC_CHECK_TOOL(RANLIB, ranlib, :)
122 # We need AC_EXEEXT to keep automake happy in cygnus mode. However,
123 # at least currently, we never actually build a program, so we never
124 # need to use $(EXEEXT). Moreover, the test for EXEEXT normally
125 # fails, because we are probably configuring with a cross compiler
126 # which can't create executables. So we include AC_EXEEXT to keep
127 # automake happy, but we don't execute it, since we don't care about
133 . [$]{boehm_gc_basedir}/configure.host
135 case [$]{boehm_gc_basedir} in
136 /* | [A-Za-z]:[/\\]*) boehm_gc_flagbasedir=[$]{boehm_gc_basedir} ;;
137 *) boehm_gc_flagbasedir='[$](top_builddir)/'[$]{boehm_gc_basedir} ;;
140 boehm_gc_cflags="[$]{boehm_gc_cflags} -I"'[$](top_builddir)'"/$1/targ-include -I[$]{boehm_gc_flagbasedir}/libc/include"
143 boehm_gc_cflags="[$]{boehm_gc_cflags} -I[$]{boehm_gc_flagbasedir}/../winsup/include"
147 boehm_gc_cflags="[$]{boehm_gc_cflags} -fno-builtin"
149 BOEHM_GC_CFLAGS=${boehm_gc_cflags}
150 AC_SUBST(BOEHM_GC_CFLAGS)