Index: configure.in =================================================================== RCS file: /home/cvs/debian/fetchmail/configure.in,v retrieving revision 1.1.1.10 diff -u -r1.1.1.10 configure.in --- configure.in 2001/03/18 13:00:03 1.1.1.10 +++ configure.in 2001/03/23 17:04:06 @@ -15,19 +15,19 @@ 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