build: Update build scripts
Change-Id: Ifad7ff5004a4dede8beec348e9920453fc74449d
diff --git a/.jenkins.d/00-deps.sh b/.jenkins.d/00-deps.sh
index 36fcc7e..765338d 100755
--- a/.jenkins.d/00-deps.sh
+++ b/.jenkins.d/00-deps.sh
@@ -4,26 +4,18 @@
JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
source "$JDIR"/util.sh
-if has OSX $NODE_LABELS; then
- if has OSX-10.8 $NODE_LABELS; then
- EXTRA_FLAGS=--c++11
- fi
+set -x
- set -x
+if has OSX $NODE_LABELS; then
brew update
brew upgrade
- brew install boost pkg-config cryptopp log4cxx $EXTRA_FLAGS
+ brew install boost pkg-config cryptopp openssl log4cxx
brew cleanup
fi
if has Ubuntu $NODE_LABELS; then
- BOOST_PKG=libboost-all-dev
- if has Ubuntu-12.04 $NODE_LABELS; then
- BOOST_PKG=libboost1.48-all-dev
- fi
-
- set -x
- sudo apt-get update -qq -y
- sudo apt-get -qq -y install build-essential pkg-config $BOOST_PKG \
- libcrypto++-dev libsqlite3-dev liblog4cxx10-dev
+ sudo apt-get -qq update
+ sudo apt-get -qq install build-essential pkg-config libboost-all-dev \
+ libcrypto++-dev libsqlite3-dev libssl-dev \
+ liblog4cxx10-dev
fi