This is an automated email from the ASF dual-hosted git repository.

aldrin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new 41d2604  MINIFICPP-762: Add convenience installs for static openssl 
libs
41d2604 is described below

commit 41d26048807c9a4b1e436cd283e4dd1a328eceb9
Author: Marc Parisi <[email protected]>
AuthorDate: Mon Mar 11 09:24:31 2019 -0400

    MINIFICPP-762: Add convenience installs for static openssl libs
    
    This closes #509.
    
    Signed-off-by: Aldrin Piri <[email protected]>
---
 centos.sh     | 1 +
 rheldistro.sh | 1 +
 2 files changed, 2 insertions(+)

diff --git a/centos.sh b/centos.sh
index 70d9bfb..00d4095 100644
--- a/centos.sh
+++ b/centos.sh
@@ -129,6 +129,7 @@ build_deps(){
           elif [ "$FOUND_VALUE" = "openssl" ]; then
             INSTALLED+=("openssl")
             INSTALLED+=("openssl-devel")
+            INSTALLED+=("openssl-static")
           elif [ "$FOUND_VALUE" = "libusb" ]; then
             install_libusb
           elif [ "$FOUND_VALUE" = "libpng" ]; then
diff --git a/rheldistro.sh b/rheldistro.sh
index 79d6473..3151e43 100644
--- a/rheldistro.sh
+++ b/rheldistro.sh
@@ -98,6 +98,7 @@ build_deps(){
           elif [ "$FOUND_VALUE" = "openssl" ]; then
             INSTALLED+=("openssl")
             INSTALLED+=("openssl-devel")
+            INSTALLED+=("openssl-static")
           elif [ "$FOUND_VALUE" = "libusb" ]; then
             INSTALLED+=("libusb-devel")
           elif [ "$FOUND_VALUE" = "libpng" ]; then

Reply via email to