remove openSSL from the ardour dependency stack (rely on system-provided version)

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12199 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-05-07 18:45:54 +00:00
parent 15c9e45e7b
commit 80d8dfcefa

View file

@ -212,10 +212,6 @@ if [ ! -f suil-0.6.0.tar.bz2 ] ; then
echo Suil
fetch_as_is http://download.drobilla.net/suil-0.6.0.tar.bz2
fi
if [ ! -f openssl-1.0.1b.tar.gz ] ; then
echo Suil
fetch_as_is http://www.openssl.org/source/openssl-1.0.1b.tar.gz
fi
if [ ! -f curl-7.25.0.tar.bz2 ] ; then
echo Suil
fetch_as_is http://curl.haxx.se/download/curl-7.25.0.tar.bz2
@ -234,8 +230,6 @@ fi
tar xf boost_1_49_0.tar.bz2 && \
(set -e && cd boost_1_49_0 && ./bootstrap.sh --prefix=$PREFIX --with-libraries=exception && ./b2 && ./b2 install) || die "boost build failed"
tar xf openssl-1.0.1b.tar.gz && \
(set -e && cd openssl-1.0.1b && CXXFLAGS="$GLOBAL_CFLAGS" CFLAGS="$GLOBAL_CFLAGS" LDFLAGS="$GLOBAL_LDFLAGS" ./config --prefix=$PREFIX shared threads no-sse2 && MAKEFLAGS= make && make install) || die "opensl build failed"
tar xf curl-7.25.0.tar.bz2 && \
(set -e && cd curl-7.25.0 && CXXFLAGS="$GLOBAL_CFLAGS" CFLAGS="$GLOBAL_CFLAGS" LDFLAGS="$GLOBAL_LDFLAGS" ./configure --prefix=$PREFIX && make && make install) || die "curl build failed"