summaryrefslogtreecommitdiff
path: root/security/openssh
diff options
context:
space:
mode:
authortron <tron>2001-04-16 03:03:07 +0000
committertron <tron>2001-04-16 03:03:07 +0000
commit0780305fa0d08b94a165bf2a98ceea4ed6ec5e8b (patch)
tree9caeebe922c977358e31b7973c81c52ea4a4462a /security/openssh
parentf71e1390c0713e04a99c1d5251ddb1684eca9f57 (diff)
downloadpkgsrc-0780305fa0d08b94a165bf2a98ceea4ed6ec5e8b.tar.gz
Don't try to build the "openssl" package if we got "openssl-0.96a" in the
base system
Diffstat (limited to 'security/openssh')
-rw-r--r--security/openssh/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile
index ad2d84836c6..916cd938b1b 100644
--- a/security/openssh/Makefile
+++ b/security/openssh/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.46 2001/04/12 10:42:52 wennmach Exp $
+# $NetBSD: Makefile,v 1.47 2001/04/16 03:03:07 tron Exp $
DISTNAME= openssh-2.5.2p2
CATEGORIES= security
@@ -29,8 +29,10 @@ OPENSSL_VERSION!= awk '/.*OPENSSL_VERSION_NUMBER.*/ { print $$3 }' \
${OPENSSLV_H}
OPENSSL_VERSION_095a= 0x0090581fL
OPENSSL_VERSION_096= 0x0090600fL
+OPENSSL_VERSION_096a= 0x0090601fL
.if (${OPENSSL_VERSION} != ${OPENSSL_VERSION_095a}) && \
- (${OPENSSL_VERSION} != ${OPENSSL_VERSION_096})
+ (${OPENSSL_VERSION} != ${OPENSSL_VERSION_096}) && \
+ (${OPENSSL_VERSION} != ${OPENSSL_VERSION_096a})
DEPENDS+= openssl-0.9.6:../../security/openssl
SSLBASE= ${LOCALBASE}
.else