diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-24 17:57:22 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-24 17:57:22 +0000 |
commit | d24d33989870127522d511ac03e440c11562f403 (patch) | |
tree | ccc89add8a76caa88525dc6cb16b12cdd31a94a7 /configure.in | |
parent | 87835075d4f5d1adf0e253861ae2bc3b15dfeae4 (diff) | |
download | fetchmail-d24d33989870127522d511ac03e440c11562f403.tar.gz fetchmail-d24d33989870127522d511ac03e440c11562f403.tar.bz2 fetchmail-d24d33989870127522d511ac03e440c11562f403.zip |
More configuration fixes.
svn path=/trunk/; revision=3274
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 0a2af8ec..d941e0e4 100644 --- a/configure.in +++ b/configure.in @@ -15,19 +15,19 @@ PACKAGE=`sed -n '/PACKAGE *= *\(.*\)/s//\1/p' <$srcdir/Makefile.in` VERSION=`sed -n '/VERSION *= *\(.*\)/s//\1/p' <$srcdir/Makefile.in` AM_INIT_AUTOMAKE("$PACKAGE", "$VERSION") -dnl Map autoconf, autoheader and aclocal to (/bin/true) if they are +dnl Map autoconf, autoheader and aclocal to missing.sh if they are dnl not available in the system, so as not to cause problems in dnl Makefile.in. Be sure to fix this hack if we start supporting dnl automake (Makefile.am). if test -z "$AUTOCONF" ; then - AUTOCONF=true + AUTOCONF="missing.sh autoconf" fi if test -z "$ACLOCAL" ; then - ACLOCAL=true + ACLOCAL="missing.sh aclocal" fi if test -z "$AUTOHEADER" ; then - AUTOHEADER=true + AUTOHEADER="missing.sh autoheader" fi AC_CANONICAL_HOST |