summaryrefslogtreecommitdiff
path: root/net/connect
diff options
context:
space:
mode:
authortv <tv>2005-11-03 17:24:30 +0000
committertv <tv>2005-11-03 17:24:30 +0000
commite22d7eb92b8b39cd3a60b1869e39fb16b2221e2e (patch)
tree26397ea3753327c656c919ae0df130903ab390b8 /net/connect
parentdb40cfcd638c8f0448d8910aae67d6570c10e34d (diff)
downloadpkgsrc-e22d7eb92b8b39cd3a60b1869e39fb16b2221e2e.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