diff options
author | tv <tv@pkgsrc.org> | 2005-11-07 20:35:20 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-11-07 20:35:20 +0000 |
commit | ceed3298da54b9937de841c4d02fe37eeb19efde (patch) | |
tree | f666627afcd7fb527009445dc030f2914ddf2a21 /mail | |
parent | 97f562233c7f5f2c89c8b615ecbc56076980d09e (diff) | |
download | pkgsrc-ceed3298da54b9937de841c4d02fe37eeb19efde.tar.gz |
Add devel/sysexits bl3.
Add hacks.mk to get the libbind resolver on Interix.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/smtpfeed/Makefile | 3 | ||||
-rw-r--r-- | mail/smtpfeed/hacks.mk | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/mail/smtpfeed/Makefile b/mail/smtpfeed/Makefile index 999e170c088..646871cbbb8 100644 --- a/mail/smtpfeed/Makefile +++ b/mail/smtpfeed/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2005/03/24 21:12:56 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2005/11/07 20:35:20 tv Exp $ DISTNAME= smtpfeed-1.18 PKGREVISION= 1 @@ -41,4 +41,5 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/$$i ${DOCDIR}; \ done +.include "../../devel/sysexits/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/mail/smtpfeed/hacks.mk b/mail/smtpfeed/hacks.mk new file mode 100644 index 00000000000..e967ea912da --- /dev/null +++ b/mail/smtpfeed/hacks.mk @@ -0,0 +1,11 @@ +# $NetBSD: hacks.mk,v 1.1 2005/11/07 20:35:20 tv Exp $ + +### +### Need a real resolver on Interix. +### +.if ${OPSYS} == "Interix" +BUILDLINK_PASSTHRU_DIRS+= /usr/local/include/bind /usr/local/lib/bind +CPPFLAGS+= -I/usr/local/include/bind +LDFLAGS+= -L/usr/local/lib/bind +LIBS+= -lbind -ldb +.endif |