diff --git a/VERSION b/VERSION index 4a11a91..ca927ee 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -http://haproxy.1wt.eu/download/1.6/src/haproxy-1.6.5.tar.gz +http://www.haproxy.org/download/1.9/src/haproxy-1.9.10.tar.gz diff --git a/bin/compile b/bin/compile index e8e4b1e..8286953 100755 --- a/bin/compile +++ b/bin/compile @@ -10,6 +10,7 @@ VERSION=`cat $VERSION_DIR/VERSION | sed 's/[\r\n]*$//'` ARCHIVE=`basename $VERSION` ARCHIVE_DIR=`echo $ARCHIVE | sed 's/\.tar\.gz$//'` + get_source() { if [ ! -d $CACHE_DIR ]; then echo "Creating $CACHE_DIR" @@ -37,7 +38,7 @@ compile_source() { if [ ! -f $CACHE_DIR/$ARCHIVE_DIR/haproxy ]; then echo "Compiling $ARCHIVE_DIR..." cd $CACHE_DIR/$ARCHIVE_DIR - make TARGET=linux2628 + make TARGET=linux2628 USE_OPENSSL=1 fi }