diff options
author | tron <tron> | 2014-02-12 23:16:21 +0000 |
---|---|---|
committer | tron <tron> | 2014-02-12 23:16:21 +0000 |
commit | a2bfbe1742a5d0cf89884b8da5ad5b45046360e3 (patch) | |
tree | 14a12627f820347917f1a9e2fc5156db148cef0e /security/openssl | |
parent | 4a1fe3ea214e198b9c3c6ec6a07b97e7a4db05e8 (diff) | |
download | pkgsrc-a2bfbe1742a5d0cf89884b8da5ad5b45046360e3.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".
Diffstat (limited to 'security/openssl')
-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 |