diff options
author | grant <grant@pkgsrc.org> | 2007-03-02 12:05:32 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2007-03-02 12:05:32 +0000 |
commit | 7da1d44418d3caa52d1e4ff2362921c0dd73a629 (patch) | |
tree | 93270623a735e02a9190eedb12f5d8ab033efaf2 /mail/perdition | |
parent | a1c0241557f352aaa9bb50d9097b32f606306a20 (diff) | |
download | pkgsrc-7da1d44418d3caa52d1e4ff2362921c0dd73a629.tar.gz |
if SSL is enabled we need to tell configure where to find it, or it
is silently built without SSL.
bump PKGREVISION since SSL is enabled by default.
Diffstat (limited to 'mail/perdition')
-rw-r--r-- | mail/perdition/Makefile | 4 | ||||
-rw-r--r-- | mail/perdition/options.mk | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/mail/perdition/Makefile b/mail/perdition/Makefile index b556b729641..e0c62ac5e64 100644 --- a/mail/perdition/Makefile +++ b/mail/perdition/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2006/03/14 20:43:23 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2007/03/02 12:05:32 grant Exp $ # -PKGREVISION= 5 +PKGREVISION= 6 PERDITION_COMMENT= main program diff --git a/mail/perdition/options.mk b/mail/perdition/options.mk index 1b1c6238e1e..da5430a6472 100644 --- a/mail/perdition/options.mk +++ b/mail/perdition/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2006/03/04 16:06:29 tv Exp $ +# $NetBSD: options.mk,v 1.3 2007/03/02 12:05:32 grant Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.perdition PKG_SUPPORTED_OPTIONS= ssl pam @@ -23,6 +23,8 @@ PLIST_SUBST+= PERDITION_HAVE_PAM="@comment " ### .if !empty(PKG_OPTIONS:Mssl) . include "../../security/openssl/buildlink3.mk" +CONFIGURE_ARGS+= --with-ssl-includes=${BUILDLINK_PREFIX.openssl}/include +CONFIGURE_ARGS+= --with-ssl-libraries=${BUILDLINK_PREFIX.openssl}/lib .else CONFIGURE_ARGS+= --disable-ssl .endif |