This library uses its own versions of some of the system headers.

Protect against CFLAGS having -I/usr/include listed explicitly.
The real solution would be to fix the library.  XXX
This commit is contained in:
ru 2002-03-22 18:34:52 +00:00
parent cb4688c90e
commit f4f7155d40

View File

@ -2,9 +2,6 @@
BIND_DIR=${.CURDIR}/../../contrib/bind
# contrib/bind/include/* must not override any real system includes
CFLAGS+= -I${BIND_DIR}/port/freebsd/include -I${BIND_DIR}/include
LIB= bind
WANT_IRS= for now
@ -86,3 +83,6 @@ NOPIC= true
INTERNALSTATICLIB= true
.include <bsd.lib.mk>
# XXX contrib/bind/include/* must not override any real system includes
CFLAGS:= -I${BIND_DIR}/port/freebsd/include -I${BIND_DIR}/include ${CFLAGS}