diff options
author | tron <tron@pkgsrc.org> | 2014-02-12 23:16:21 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2014-02-12 23:16:21 +0000 |
commit | 58a61e26eba4e1af9924182702a8e46ebb4da31e (patch) | |
tree | 14a12627f820347917f1a9e2fc5156db148cef0e | |
parent | bfbe56a695dbd925b21b5e42ef22b6e0353ed4fb (diff) | |
download | pkgsrc-58a61e26eba4e1af9924182702a8e46ebb4da31e.tar.gz |
Set minimum required API version of OpenSSL to 1.0.1c:
1.) OpenSSL 0.9.8* doesn't support TLS 1.2, Elliptic curve cryptography
and other modern TLS features.
2.) Supporting OpenSSL 0.9.8* causes extra maintenance overhead.
As a result NetBSD 5.*, all versions of Mac OS X and possibly other
platforms will now use OpenSSL from "pkgsrc".
-rw-r--r-- | security/openssl/buildlink3.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/openssl/buildlink3.mk b/security/openssl/buildlink3.mk index f25afdc6b74..0c1b400ffaf 100644 --- a/security/openssl/buildlink3.mk +++ b/security/openssl/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.47 2013/04/03 11:56:20 obache Exp $ +# $NetBSD: buildlink3.mk,v 1.48 2014/02/12 23:16:21 tron Exp $ BUILDLINK_TREE+= openssl @@ -7,8 +7,8 @@ OPENSSL_BUILDLINK3_MK:= . include "../../mk/bsd.fast.prefs.mk" -BUILDLINK_API_DEPENDS.openssl+= openssl>=0.9.6m -BUILDLINK_ABI_DEPENDS.openssl+= openssl>=1.0.1c +BUILDLINK_API_DEPENDS.openssl+= openssl>=1.0.1c +BUILDLINK_ABI_DEPENDS.openssl+= openssl>=1.0.1fnb1 BUILDLINK_PKGSRCDIR.openssl?= ../../security/openssl # Ensure that -lcrypt comes before -lcrypto when linking so that the |