diff options
author | tron <tron@pkgsrc.org> | 2001-04-09 13:32:55 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-04-09 13:32:55 +0000 |
commit | 40da36f31b709c422e28f93d439205e79d3a93db (patch) | |
tree | 12b202d96368d94406f4abe5b9cb90e407d22668 /security | |
parent | 2929ae8dded50466f5d44d4bf45e8a102c6ee6a2 (diff) | |
download | pkgsrc-40da36f31b709c422e28f93d439205e79d3a93db.tar.gz |
Make this package work with version 0.9.6 of the "openssl" package.
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 61e4c26ac88..e13c9292265 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2001/03/27 03:20:15 hubertf Exp $ +# $NetBSD: Makefile,v 1.45 2001/04/09 13:32:55 tron Exp $ DISTNAME= openssh-2.5.2p2 CATEGORIES= security @@ -26,14 +26,16 @@ OPENSSLV_H= /usr/include/openssl/opensslv.h OPENSSL_VERSION!= awk '/.*OPENSSL_VERSION_NUMBER.*/ { print $$3 }' \ ${OPENSSLV_H} OPENSSL_VERSION_095a= 0x0090581fL -.if (${OPENSSL_VERSION} != ${OPENSSL_VERSION_095a}) -DEPENDS+= openssl-0.9.5a:../../security/openssl +OPENSSL_VERSION_096= 0x0090600fL +.if (${OPENSSL_VERSION} != ${OPENSSL_VERSION_095a}) && \ + (${OPENSSL_VERSION} != ${OPENSSL_VERSION_096}) +DEPENDS+= openssl-0.9.6:../../security/openssl SSLBASE= ${LOCALBASE} .else SSLBASE= /usr .endif .else -DEPENDS+= openssl-0.9.5a:../../security/openssl +DEPENDS+= openssl-0.9.6:../../security/openssl SSLBASE= ${LOCALBASE} .endif |