Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -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
3 changes: 2 additions & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
}

Expand Down