1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

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:
Ruslan Ermilov 2002-03-22 18:34:52 +00:00
parent e3f406b3c1
commit d848d77ad7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92963

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}