diff options
author | abs <abs> | 2002-08-20 17:13:38 +0000 |
---|---|---|
committer | abs <abs> | 2002-08-20 17:13:38 +0000 |
commit | 31c0af85800fc93ca200fea9b94d7433f5e14366 (patch) | |
tree | e7813da00ffcc901e65798b9b8f10e699beb1aaf | |
parent | b2396fb7002758a5a92d81f6c6ff4c72643c07b8 (diff) | |
download | pkgsrc-31c0af85800fc93ca200fea9b94d7433f5e14366.tar.gz |
openssl/buildlink.mk enforces OpenSSL>=0.9.5f due to the DoS fix. Do not bother
trying to ask for 0.9.5a as we will not be allowed to use it anyway.
-rw-r--r-- | security/openssh/Makefile.intree | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/security/openssh/Makefile.intree b/security/openssh/Makefile.intree index dc95acfe8e8..b4a9b30a1f1 100644 --- a/security/openssh/Makefile.intree +++ b/security/openssh/Makefile.intree @@ -1,13 +1,15 @@ -# $NetBSD: Makefile.intree,v 1.3 2002/06/28 18:34:14 jlam Exp $ +# $NetBSD: Makefile.intree,v 1.4 2002/08/20 17:13:38 abs Exp $ .include "../../mk/bsd.prefs.mk" -# Require an in-tree OpenSSL that is at least 0.9.5a. +# We would like to require an in-tree OpenSSL that is at least 0.9.5a, but the +# openssl buildlink.mk forces at least 0.9.5f, which makes +# UPDATE_INTREE_OPENSSH useless for anything before 1.6x # -USE_OPENSSL_VERSION:= ${OPENSSL_VERSION_095A} +# USE_OPENSSL_VERSION:= ${OPENSSL_VERSION_095A} .include "../../security/openssl/buildlink.mk" .if ${_NEED_OPENSSL} == "YES" -IGNORE= "OpenSSL>=0.9.5a in the base distribution is required." +IGNORE= "OpenSSL>=0.9.5f in the base distribution is required." .endif _UPDATE_INTREE_OPENSSH?= NO |