f93c6f4cf5
- A workaround for a bug in old versions of the CISCO PIX firewall software l that caused mail to be resent repeatedly to systems behind such a product. The same workaround will be folded into the "stable" release when time permits. - A much enhanced pipe delivery agent with flags to control case folding of the $nexthop, $recipient, $user, $extension or $mailbox command-line macros. - A much enhanced pipe delivery agent with proper quoting of white space and other special characters in the expansions of the $sender and $recipient command-line macros. This is necessary for correct operation of the "simple" content filter, among others. - Retraction of one RFC2821-induced change that was causing more problems than it solved.
32 lines
726 B
Makefile
32 lines
726 B
Makefile
# $OpenBSD: Makefile,v 1.19 2001/06/11 06:31:52 jakob Exp $
|
|
|
|
DISTNAME= snapshot-20010610
|
|
PKGNAME= postfix-${DISTNAME}
|
|
|
|
MASTER_SITE_SUBDIR= experimental
|
|
|
|
FLAVORS= pcre sasl ldap
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mpcre}
|
|
LIB_DEPENDS+= pcre::devel/pcre
|
|
|
|
MAKE_CCARGS+= -I${LOCALBASE}/include -DHAS_PCRE
|
|
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lpcre
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Msasl}
|
|
LIB_DEPENDS+= sasl::security/cyrus-sasl
|
|
|
|
MAKE_CCARGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl -DUSE_SASL_AUTH
|
|
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lsasl -lkrb
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mldap}
|
|
LIB_DEPENDS+= ldap::databases/openldap
|
|
MAKE_CCARGS+= -I${LOCALBASE}/include -DHAS_LDAP
|
|
MAKE_AUXLIBS+= -L${LOCALBASE}/lib -lldap -llber
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|