blob: deab2979ac71c9284b6c38c89c8afbcaa2ba9a56 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|