summaryrefslogtreecommitdiff
path: root/net
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
commit9ff67aefa1f4f85d6838fd88e2d714b9d5e1de97 (patch)
treea6c96724cff6a2bf0cbe9ea6eba937ef7493be7b /net
parenta78e01413a775373c9c7ba6e221d313a2ecdf4bf (diff)
downloadpkgsrc-9ff67aefa1f4f85d6838fd88e2d714b9d5e1de97.tar.gz
Need libbind resolver on Interix.
Diffstat (limited to 'net')
-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