summaryrefslogtreecommitdiff
path: root/boehm-gc/aclocal.m4
diff options
context:
space:
mode:
authorneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-20 03:11:01 +0000
committerneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-20 03:11:01 +0000
commit73d442c797fec27e9d4f74a1c1d79c47a165f86e (patch)
tree29753b67ac5b84cb6baa525969fe5d7c040fb68a /boehm-gc/aclocal.m4
parente86087cf20ba6b25f3147c3c3ad21c794a68936f (diff)
downloadgcc-73d442c797fec27e9d4f74a1c1d79c47a165f86e.tar.gz
* acinclude.m4: Move certain code to configure.in.
* configure.in: Receive code from acinclude.m4. * aclocal.m4: Rebuild. * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78144 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/aclocal.m4')
-rw-r--r--boehm-gc/aclocal.m435
1 files changed, 0 insertions, 35 deletions
diff --git a/boehm-gc/aclocal.m4 b/boehm-gc/aclocal.m4
index 4783c880e63..b47d1702172 100644
--- a/boehm-gc/aclocal.m4
+++ b/boehm-gc/aclocal.m4
@@ -31,41 +31,6 @@ dnl PARTICULAR PURPOSE.
AC_DEFUN(GC_CONFIGURE,
[
-dnl Default to --enable-multilib
-AC_ARG_ENABLE(multilib,
-[ --enable-multilib build many library versions (default)],
-[case "${enableval}" in
- yes) multilib=yes ;;
- no) multilib=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
- esac], [multilib=yes])dnl
-
-dnl We may get other options which we don't document:
-dnl --with-target-subdir, --with-multisrctop, --with-multisubdir
-
-dnl I needed to add the -n test to allow configuration in src directory - HB
-if test "[$]{srcdir}" = "."; then
- if test "[$]{with_target_subdir}" != "." -a -n "[$]{with_target_subdir}"; then
- gc_basedir="[$]{srcdir}/[$]{with_multisrctop}../$1"
- else
- gc_basedir="[$]{srcdir}/[$]{with_multisrctop}$1"
- fi
-else
- gc_basedir="[$]{srcdir}/$1"
-fi
-AC_SUBST(gc_basedir)
-AC_CONFIG_AUX_DIR($gc_basedir/..)
-if :; then :; else
- # This overrides the previous occurrence for automake, but not for
- # autoconf, which is exactly what we want.
- AC_CONFIG_AUX_DIR(..)
-fi
-
-AC_CANONICAL_SYSTEM
-
-# This works around an automake problem.
-mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
-AC_SUBST(mkinstalldirs)
AM_INIT_AUTOMAKE(gc, 6.0, no-define)