Commit 13ab5c04 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

My version.



git-svn-id: http://www.varnish-cache.org/svn/trunk@349 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 11ff60f0
#!/bin/sh
#
# $Id: autogen.sh 118 2006-04-05 09:40:22Z phk $
#
set -ex
if [ -d /usr/local/gnu-autotools/bin ] ; then
PATH=${PATH}:/usr/local/gnu-autotools/bin
export PATH
fi
base=$(cd $(dirname $0) && pwd)
for dir in $base $base/contrib/libevent ; do
(
echo $dir
cd $dir
aclocal
libtoolize --copy --force
aclocal
autoheader
automake --add-missing --copy --foreign
autoconf
)
done
sh configure \
--enable-pedantic \
--enable-wall \
--enable-werror \
--enable-dependency-tracking \
"CFLAGS=-std=c99 -Wno-format"
# This is a safety-measure during development
( cd lib/libvcl && ./*.tcl )
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