From cafb2a0daa952ef4a9f04e3ba3e8ab940a51ee68 Mon Sep 17 00:00:00 2001 From: obrien Date: Fri, 1 Dec 2000 09:39:28 +0000 Subject: The GCC 2.96 snapshots have slightly different rules for finding include files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.". --- usr.sbin/named/Makefile.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'usr.sbin/named') diff --git a/usr.sbin/named/Makefile.inc b/usr.sbin/named/Makefile.inc index bd9211e..cbebbcb 100644 --- a/usr.sbin/named/Makefile.inc +++ b/usr.sbin/named/Makefile.inc @@ -16,7 +16,8 @@ DESTRUN= /var/run DESTSBIN= /usr/sbin DESTHELP= /usr/share/misc -CFLAGS+= -I${BIND_DIR}/port/freebsd/include +CFLAGS+= -I${BIND_DIR}/port/freebsd/include \ + -I${.CURDIR}/../../contrib/bind/bin/named # This is mostly for named and named-xfer .if defined(USE_LIBBIND) -- cgit v1.1