X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=buildconf.sh;h=d7537b8ef825991d6872a964467ec21bd16bc472;hb=8dc6d0bc4ddbb2d37b3aafd93396a0e4a8e87560;hp=d28f54e9818001e8debccacc5f10b6a6dccc306a;hpb=e7f41bcf7b9b13a3a744ade63f5c00ba9097c990;p=yazproxy-moved-to-github.git diff --git a/buildconf.sh b/buildconf.sh index d28f54e..d7537b8 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,7 +1,17 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.7 2005-06-21 18:46:04 adam Exp $ +# $Id: buildconf.sh,v 1.9 2006-03-28 20:00:15 adam Exp $ +if automake --version|head -1 |grep '1\.[4-7]'; then + echo "automake 1.4-1.7 is active. You should use automake 1.8 or later" + if test -f /etc/debian_version; then + echo " sudo apt-get install automake1.9" + echo " sudo update-alternatives --config automake" + fi + exit 1 +fi + set -x -aclocal -I . +# I am tired of underquoted warnings for Tcl macros +aclocal -I . 2>&1 | grep -v aclocal/tcl.m4 libtoolize --automake --force automake --add-missing autoconf @@ -31,7 +41,7 @@ esac if $enable_configure; then if test -n "$sh_flags"; then - CXXFLAGS="$sh_flags" ./configure $* + CXXFLAGS="$sh_flags" ./configure --disable-shared --enable-static $* else ./configure $* fi