Be explicit about which regex.h file we are including. This reduces the

need for hack workarounds in tools/lib32/build32.sh.
This commit is contained in:
Peter Wemm 2004-09-16 01:39:13 +00:00
parent 7eb8f6f303
commit 3821a3d7ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=135286

View file

@ -5,10 +5,10 @@ SUBDIR+= doc
LIB= gnuregex
SHLIB_MAJOR= 2
SRCS= regex.c
SRCS= gnuregex.c
INCSGROUPS= INCS WRINCS PXINCS
INCS= regex.h.patched
CLEANFILES+= regex.h.patched
CLEANFILES+= regex.h.patched gnuregex.c
INCSNAME= regex.h
INCSDIR= ${INCLUDEDIR}/gnu
WRINCS= gnuregex.h
@ -16,10 +16,14 @@ PXINCS= posix/regex.h
PXINCSDIR= ${INCLUDEDIR}/gnu/posix
NOMAN= noman
CFLAGS+=-D_REGEX_RE_COMP -DSTDC_HEADERS -I${DESTDIR}/usr/include/gnu
CFLAGS+=-D_REGEX_RE_COMP -DSTDC_HEADERS
regex.h.patched: regex.h
sed 's=<posix/regex\.h>=<gnu/posix/regex.h>=g' \
< ${.ALLSRC} > ${.TARGET}
gnuregex.c: regex.c
sed 's=<regex\.h>=<gnu/regex.h>=g' \
< ${.ALLSRC} > ${.TARGET}
.include <bsd.lib.mk>