blob: 3b1cdbb8f5d0cccd2665dc02a38568cb5f77ff39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: hacks.mk,v 1.1 2006/11/28 16:30:39 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
|