diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-11-28 07:09:12 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-11-28 07:09:12 +0000 |
commit | 78fe274d6c17dfb1790e6e866b8e6199e7ddd379 (patch) | |
tree | 9b6b71d7da098fdce546fab54fb7643a5d465045 /security/cyrus-sasl2 | |
parent | 97e8b7483d5a726a229388d41756a161f343e64f (diff) |
Notes
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index d8e5821e83bd..27c83af07acf 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -50,7 +50,6 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ --mandir=${MANPREFIX}/man \ --enable-static \ --enable-auth-sasldb \ - --with-openssl=${OPENSSLBASE} \ --with-rc4=openssl \ --with-saslauthd=${SASLAUTHD_RUNPATH} @@ -188,6 +187,12 @@ CONFIGURE_ARGS+=--disable-krb4 EBONES= "@comment " .endif +.if ${OPENSSLBASE} == /usr +CONFIGURE_ARGS+=--with-openssl=yes +.else +CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} +.endif + CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \ OPENSSLINC=${OPENSSLINC} \ OPENSSLLIB=${OPENSSLLIB} \ |