mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 01:38:07 -04:00
12 lines
296 B
Makefile
12 lines
296 B
Makefile
# $NetBSD: hacks.mk,v 1.1 2005/11/07 20:35:20 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
|