From cfffc434552abde91e1cd9425e33f06d3bb5285e Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Tue, 22 Nov 2016 13:25:31 +0100 Subject: [PATCH] add possibility to force static openssl linking --- Installation/Jenkins/build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Installation/Jenkins/build.sh b/Installation/Jenkins/build.sh index 13ff88d0ad..7404facca4 100755 --- a/Installation/Jenkins/build.sh +++ b/Installation/Jenkins/build.sh @@ -339,6 +339,12 @@ while [ $# -gt 0 ]; do CONFIGURE_OPTIONS="${CONFIGURE_OPTIONS} -DRPM_DISTRO=$1" shift ;; + + --staticOpenSSL) + shift + CONFIGURE_OPTIONS="${CONFIGURE_OPTIONS} -DOPENSSL_USE_STATIC_LIBS=TRUE" + shift + ;; --enterprise)