diff options
author | abs <abs@pkgsrc.org> | 2002-08-20 17:13:38 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2002-08-20 17:13:38 +0000 |
commit | 6ea7067ecba946d500dd6580ec1a56a442bc708a (patch) | |
tree | e7813da00ffcc901e65798b9b8f10e699beb1aaf /security | |
parent | f71fb983e3f6ccab80133c90ae2f20cea6760594 (diff) | |
download | pkgsrc-6ea7067ecba946d500dd6580ec1a56a442bc708a.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.
Diffstat (limited to 'security')
-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 |