On Wed, 30 Jul 2003, Alan Barrett wrote:
> Is it squid's fault or FreeBSD's fault that bootstrap.sh ends up looking for
> "autoconf" and "autoheader" when they do not exist? It seems to me that
> squid's bootstrap.sh should have detected that "autoconf257" and
> "automake257" were the correct names, but I am not sure how it's
> all supposed to work.
Setting AUTOCONF=autoconf${acver} in the environment fixed my problem.
See the attached patch to bootstrap.sh.
--apb (Alan Barrett)
Index: bootstrap.sh
===================================================================
RCS file: /cvsroot/squid/squid3/bootstrap.sh,v
retrieving revision 1.7
diff -u -r1.7 bootstrap.sh
--- bootstrap.sh 28 May 2003 23:14:03 -0000 1.7
+++ bootstrap.sh 30 Jul 2003 09:34:15 -0000
@@ -58,6 +58,9 @@
amver=`find_version automake ${amversions}`
acver=`find_version autoconf ${acversions}`
+# Set environment variable to tell automake which autoconf to use.
+AUTOCONF="autoconf${acver}" ; export AUTOCONF
+
for dir in \
"" \
lib/libTrie