blob: e6dfa58ee8dcb0cbe7eb7a024052e3bea3544ca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: hacks.mk,v 1.1 2005/11/08 14:05:23 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
|