diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-05-04 12:38:12 +0800 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-05-04 12:38:12 +0800 |
commit | dd32b25a29166ee5e49730ef3cc6efa80c37319f (patch) | |
tree | 3f4e3b89ee9d03e537c30fdd32b978bf1b0ed849 /security/openssh | |
parent | 68fc467fd6af4262efa004bf61a651bd659fe278 (diff) | |
download | freebsd-ports-gnome-dd32b25a29166ee5e49730ef3cc6efa80c37319f.tar.gz freebsd-ports-gnome-dd32b25a29166ee5e49730ef3cc6efa80c37319f.tar.zst freebsd-ports-gnome-dd32b25a29166ee5e49730ef3cc6efa80c37319f.zip |
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/openssh')
-rw-r--r-- | security/openssh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 5a91e4bc6f33..a449e9bb666d 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -32,10 +32,10 @@ FIXME= lib/Makefile scp/Makefile sftp/Makefile sftp-server/Makefile \ .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} \ |