diff options
author | obrien <obrien@FreeBSD.org> | 2000-12-01 09:39:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-12-01 09:39:28 +0000 |
commit | cafb2a0daa952ef4a9f04e3ba3e8ab940a51ee68 (patch) | |
tree | bf9398e3cc9469cabb5ad72a85bacda3b33f6e34 /lib/libipsec | |
parent | f5e9caf11e6f5f34714ba30c65368b7185a6cf6a (diff) | |
download | FreeBSD-src-cafb2a0daa952ef4a9f04e3ba3e8ab940a51ee68.zip FreeBSD-src-cafb2a0daa952ef4a9f04e3ba3e8ab940a51ee68.tar.gz |
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.".
Diffstat (limited to 'lib/libipsec')
-rw-r--r-- | lib/libipsec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libipsec/Makefile b/lib/libipsec/Makefile index 52510f7..7512517 100644 --- a/lib/libipsec/Makefile +++ b/lib/libipsec/Makefile @@ -29,7 +29,7 @@ LIB= ipsec SHLIB_MAJOR= 1 SHLIB_MINOR= 0 -CFLAGS+=-I${.OBJDIR} +CFLAGS+=-I${.CURDIR} -I. CFLAGS+=-DIPSEC_DEBUG -DIPSEC .if !defined(NOINET6) CFLAGS+=-DINET6 |