[oe-commits] [openembedded-core] 52/58: openssl_1.0: drop leading "-" from no-ssl3 config option

git at git.openembedded.org git at git.openembedded.org
Wed Jul 25 21:46:22 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 356b622f83b22824b90a49c2855048262970ad13
Author: Andre McCurdy <armccurdy at gmail.com>
AuthorDate: Mon Jul 23 19:38:51 2018 -0700

    openssl_1.0: drop leading "-" from no-ssl3 config option
    
    Although passing -no-ssl3 works, comments in the openssl Configure
    script suggest doing so isn't really correct:
    
      s /^-no-/no-/; # some people just can't read the instructions
    
    The documented way to pass no-<cipher> config options is without a
    leading "-"
    
      https://github.com/openssl/openssl/blob/OpenSSL_1_0_2-stable/INSTALL
    
    Signed-off-by: Andre McCurdy <armccurdy at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-connectivity/openssl/openssl_1.0.2o.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb b/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb
index d9e9c84..58627b0 100644
--- a/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb
+++ b/meta/recipes-connectivity/openssl/openssl_1.0.2o.bb
@@ -71,7 +71,7 @@ PACKAGECONFIG[cryptodev-linux] = "-DHAVE_CRYPTODEV -DUSE_CRYPTODEV_DIGESTS,,cryp
 
 # Remove this to enable SSLv3. SSLv3 is defaulted to disabled due to the POODLE
 # vulnerability
-EXTRA_OECONF = "-no-ssl3"
+EXTRA_OECONF = "no-ssl3"
 
 export DIRS = "crypto ssl apps engines"
 export AS = "${CC} -c"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list