diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2005-04-26 19:22:11 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2005-04-26 19:22:11 +0000 |
commit | 3c879ce4c56cf0a8a4238db0f7bc050de0bbb03a (patch) | |
tree | b2c1a0f0b776e96fbf8c8a3979670d0fd5a40cb3 /mail/maildrop | |
parent | 39baf03e56f6b08644601e8047ac1e95576260f8 (diff) |
Notes
Diffstat (limited to 'mail/maildrop')
-rw-r--r-- | mail/maildrop/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile index 25de11834c73..f54de85434e9 100644 --- a/mail/maildrop/Makefile +++ b/mail/maildrop/Makefile @@ -37,6 +37,12 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +.if defined(WITH_AUTHLIB) +.if exists(${.CURDIR}/../../security/courier-authlib/Makefile.opt) +.include "${.CURDIR}/../../security/courier-authlib/Makefile.opt" +.endif +.endif + .include <bsd.port.pre.mk> .if ${OSVERSION} <= 502010 @@ -71,8 +77,11 @@ CONFIGURE_ARGS+= --enable-trusted-users="${MAILDROP_TRUSTED_USERS}" .endif .if defined(WITH_AUTHLIB) -BUILD_DEPENDS= ${LOCALBASE}/bin/courierauthconfig:${PORTSDIR}/mail/courier-authlib -RUN_DEPENDS= ${LOCALBASE}/bin/courierauthconfig:${PORTSDIR}/mail/courier-authlib +.if exists(${.CURDIR}/../../security/courier-authlib/Makefile.dep) +.include "${.CURDIR}/../../security/courier-authlib/Makefile.dep" +.endif +BUILD_DEPENDS+= courierauthconfig:${PORTSDIR}/security/courier-authlib-base +RUN_DEPENDS+= courierauthconfig:${PORTSDIR}/security/courier-authlib-base USE_REINPLACE= yes CONFIGURE_ARGS+= --enable-authlib |