diff options
author | ume <ume@FreeBSD.org> | 2003-04-25 00:36:26 +0800 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2003-04-25 00:36:26 +0800 |
commit | 3b5c3bcd3ea916c5309254d92cfcb251ad1589bc (patch) | |
tree | 3fefdf9c2853b36a09133839228af7943c0bfcb4 /security/cyrus-sasl2 | |
parent | c7e556e8d14629948c4b5407a84ba77a6accec17 (diff) | |
download | freebsd-ports-gnome-3b5c3bcd3ea916c5309254d92cfcb251ad1589bc.tar.gz freebsd-ports-gnome-3b5c3bcd3ea916c5309254d92cfcb251ad1589bc.tar.zst freebsd-ports-gnome-3b5c3bcd3ea916c5309254d92cfcb251ad1589bc.zip |
Use security/openssl/bsd.openssl.mk.
PR: ports/51090
Submitted by: Oleg Sharoiko <os@rsu.ru> (with modification by me)
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index db0c686deacc..4a85847224a9 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -17,7 +17,6 @@ MAINTAINER= ume@FreeBSD.org COMMENT= RFC 2222 SASL (Simple Authentication and Security Layer) USE_SUBMAKE= yes -USE_OPENSSL= yes INSTALLS_SHLIB= yes @@ -99,6 +98,12 @@ CONFIGURE_ARGS+= --disable-krb4 EBONES= "@comment " .endif +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/security/openssl/bsd.openssl.mk" +.if !defined(WITH_OPENSSL_BASE) +CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} +.endif + CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \ OPENSSLINC=${OPENSSLINC} \ OPENSSLLIB=${OPENSSLLIB} \ @@ -198,4 +203,4 @@ post-install: post-clean: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc -.include <bsd.port.mk> +.include <bsd.port.post.mk> |