ci: sync jenkins scripts with NFD

Change-Id: I43689bcf51bbe7a1c3118d8b0c226b56077fb4ed
diff --git a/.jenkins.d/00-deps.sh b/.jenkins.d/00-deps.sh
index 549258a..4a4db28 100755
--- a/.jenkins.d/00-deps.sh
+++ b/.jenkins.d/00-deps.sh
@@ -4,17 +4,18 @@
 JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
 source "$JDIR"/util.sh
 
+set -x
+
 if has OSX $NODE_LABELS; then
-    set -x
     brew update
     brew upgrade
-    brew install boost pkg-config cryptopp
+    brew install boost pkg-config cryptopp openssl
     brew cleanup
 fi
 
 if has Ubuntu $NODE_LABELS; then
-    set -x
     sudo apt-get -qq update
     sudo apt-get -qq install build-essential pkg-config libboost-all-dev \
-                             libcrypto++-dev libsqlite3-dev libpcap-dev
+                             libcrypto++-dev libsqlite3-dev libssl-dev \
+                             libpcap-dev
 fi