diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-05-04 04:38:12 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-05-04 04:38:12 +0000 |
commit | 3b65f11f6fb6891b6b25610f0014d2f36783d54a (patch) | |
tree | 66f7e9de6b8f0b8ec14a4fa2e6f0399d85df3b29 /security/hpn-ssh | |
parent | ae1057d875cf0cab5a1f2a1f44ae6c55dd22ff8d (diff) | |
download | FreeBSD-ports-3b65f11f6fb6891b6b25610f0014d2f36783d54a.zip FreeBSD-ports-3b65f11f6fb6891b6b25610f0014d2f36783d54a.tar.gz |
openssl:
- some configure scripts check the version of the lib
so we need to update SHLIBVER
- bump PORTREVISION
openssh:
- build ports with local openssl, if it exists
Diffstat (limited to 'security/hpn-ssh')
-rw-r--r-- | security/hpn-ssh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/hpn-ssh/Makefile b/security/hpn-ssh/Makefile index c0e6f1f..ca11337 100644 --- a/security/hpn-ssh/Makefile +++ b/security/hpn-ssh/Makefile @@ -83,10 +83,10 @@ post-install: .include <bsd.port.pre.mk> -.if ${OSVERSION} < 430000 -OPENSSLBASE= /usr/local +.if ${OSVERSION} < 430000 || exists(${LOCALBASE}/lib/libcrypto.so.3) +OPENSSLBASE= ${LOCALBASE} OPENSSLDIR= ${OPENSSLBASE}/openssl -LIB_DEPENDS+= crypto.2:${PORTSDIR}/security/openssl +LIB_DEPENDS+= crypto.3:${PORTSDIR}/security/openssl OPENSSLLIB= ${OPENSSLBASE}/lib OPENSSLINC= ${OPENSSLBASE}/include MAKE_ENV+= OPENSSLLIB=${OPENSSLLIB} OPENSSLINC=${OPENSSLINC} \ |