Commit 91bca2ba authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Remove FreeBSD workaround; the FreeBSD ports tree has had working autotools

for two weeks now.  Also fix inconsistent indentation.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1811 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 97837c1d
......@@ -9,19 +9,17 @@ warn() {
case `uname -s` in
Darwin)
LIBTOOLIZE=glibtoolize
;;
LIBTOOLIZE=glibtoolize
;;
FreeBSD)
LIBTOOLIZE=libtoolize
if [ -d /usr/local/gnu-autotools/bin ] ; then
PATH=/usr/local/gnu-autotools/bin:${PATH}
export PATH
FIX_BROKEN_FREEBSD_PORTS="-I /usr/local/share/aclocal"
fi
;;
LIBTOOLIZE=libtoolize
;;
Linux)
LIBTOOLIZE=libtoolize
;;
LIBTOOLIZE=libtoolize
;;
*)
warn "unrecognized platform:" `uname -s`
LIBTOOLIZE=libtoolize
esac
automake_version=$(automake --version | tr ' ' '\n' | egrep '^[0-9]\.[0-9a-z.-]+')
......@@ -39,7 +37,7 @@ fi
set -ex
aclocal ${FIX_BROKEN_FREEBSD_PORTS}
aclocal
$LIBTOOLIZE --copy --force
autoheader
automake --add-missing --copy --foreign
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment