r118 - in trunk/varnish-cache: . bin/varnishd

Dag-Erling Smørgrav des at linpro.no
Wed Apr 5 11:44:48 CEST 2006


phk at projects.linpro.no writes:
> Modified: trunk/varnish-cache/autogen.sh
> ===================================================================
> --- trunk/varnish-cache/autogen.sh	2006-04-04 10:35:49 UTC (rev 117)
> +++ trunk/varnish-cache/autogen.sh	2006-04-05 09:40:22 UTC (rev 118)
> @@ -3,6 +3,8 @@
>  # $Id$
>  #
>  
> +set -ex
> +
>  if [ -d /usr/local/gnu-autotools/bin ] ; then
>  	PATH=${PATH}:/usr/local/gnu-autotools/bin
>  	export PATH
> @@ -10,6 +12,7 @@
>  
>  base=$(cd $(dirname $0) && pwd)
>  for dir in $base $base/contrib/libevent ; do
> +	(
>  	echo $dir
>  	cd $dir
>  	aclocal
> @@ -17,4 +20,14 @@
>  	autoheader
>  	automake --add-missing --copy --force --foreign
>  	autoconf
> +	)
>  done
> +
> +sh configure \
> +	--enable-pedantic \
> +	--enable-wall  \
> +	--enable-werror  \
> +	--enable-dependency-tracking
> +
> +# This is a safety-measure during development
> +( cd lib/libvcl && ./*.tcl )

This is wrong.  In any case, you don't need to run configure from
autogen; if you have an old Makefile lying around, simply running
'make' after editing any of the autoconf / automake files will
regenerate everything and re-run configure with the same arguments
that were used the first time around.

DES
-- 
Dag-Erling Smørgrav
Senior Software Developer
Linpro AS - www.linpro.no



More information about the varnish-commit mailing list