summaryrefslogtreecommitdiff
path: root/net/host
diff options
context:
space:
mode:
authortv <tv>2005-11-08 13:45:22 +0000
committertv <tv>2005-11-08 13:45:22 +0000
commit5f6577458257a6701f852553efc27c385aed92be (patch)
treea6c96724cff6a2bf0cbe9ea6eba937ef7493be7b /net/host
parent3a502d6a503cc895038f54e774b8b353ada0540d (diff)
downloadpkgsrc-5f6577458257a6701f852553efc27c385aed92be.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