using the source trees version of autoconf.
If we trust the installed version of autoconf, we should use their macros.
Performance boost of 2x in autoconfing the tree through use of frozen
m4 files.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12820
dc483132-0cff-0310-8789-
dd5450dbe970
+2000-10-27 Ezra Peisach <epeisach@mit.edu>
+
+ * reconf: Pass "-m util/autoconf" to autoreconf only if we are
+ using the source trees version of autoconf.
+
2000-10-03 Ken Raeburn <raeburn@mit.edu>
* reconf: Look for autoconf 2.12 or later. Don't use "grep -q",
force=
autoreconfprog=./util/autoconf/autoreconf
+autoreconfoptions="-m util/autoconf"
verbose=false
autoreconf="/bin/sh $autoreconfprog"
autoconf --version | grep "$pat" >/dev/null && \
autoheader --version | grep "$pat" >/dev/null; then
autoreconf=autoreconf
+ autoreconfoptions=
echo "Using" `autoconf --version` "found in your path..."
else
echo "Couldn't find autoconf 2.12 or higher in your path."
fi
if $verbose ; then
- echo $autoreconf -m util/autoconf -l . --verbose $force
+ echo $autoreconf $autoreconfoptions -l . --verbose $force
fi
-$autoreconf -m util/autoconf -l . --verbose $force
+$autoreconf $autoreconfoptions -l . --verbose $force