summaryrefslogtreecommitdiff
path: root/net/connect
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2005-11-03 17:24:30 +0000
committertv <tv@pkgsrc.org>2005-11-03 17:24:30 +0000
commita1d4a78ec088bff60fc65713c582ec685c1f5f23 (patch)
tree26397ea3753327c656c919ae0df130903ab390b8 /net/connect
parent7858181bc156b43e2afae6d6a123065f3316e890 (diff)
downloadpkgsrc-a1d4a78ec088bff60fc65713c582ec685c1f5f23.tar.gz
Use real bind resolver on Interix.
Diffstat (limited to 'net/connect')
-rw-r--r--net/connect/hacks.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/net/connect/hacks.mk b/net/connect/hacks.mk
new file mode 100644
index 00000000000..bfa035b5025
--- /dev/null
+++ b/net/connect/hacks.mk
@@ -0,0 +1,11 @@
+# $NetBSD: hacks.mk,v 1.1 2005/11/03 17:24:30 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