summaryrefslogtreecommitdiff
path: root/net/host
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2005-11-08 13:45:22 +0000
committertv <tv@pkgsrc.org>2005-11-08 13:45:22 +0000
commitc305d2fcb9dd375ab4bc02297a06c6d5b97019d4 (patch)
treea6c96724cff6a2bf0cbe9ea6eba937ef7493be7b /net/host
parent21a145f52327bfcc9a0850369ed219419dca38e3 (diff)
downloadpkgsrc-c305d2fcb9dd375ab4bc02297a06c6d5b97019d4.tar.gz
Need libbind resolver on Interix.
Diffstat (limited to 'net/host')
-rw-r--r--net/host/hacks.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/net/host/hacks.mk b/net/host/hacks.mk
new file mode 100644
index 00000000000..deab2979ac7
--- /dev/null
+++ b/net/host/hacks.mk
@@ -0,0 +1,11 @@
+# $NetBSD: hacks.mk,v 1.1 2005/11/08 13:45:22 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