diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2004-02-18 22:09:34 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2004-02-18 22:09:34 +0000 |
commit | 9fecffa39191fb24b39178e40b3570263ea4244b (patch) | |
tree | 7879566a16d724c6eb55a6d6d73b171b8bc2bfb7 /gnu | |
parent | 5476ba554519526a1f22b046a625c7a58a5431b5 (diff) | |
download | src-9fecffa39191fb24b39178e40b3570263ea4244b.tar.gz src-9fecffa39191fb24b39178e40b3570263ea4244b.zip |
Notes
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libregex/Makefile | 4 | ||||
-rw-r--r-- | gnu/lib/libregex/gnuregex.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gnu/lib/libregex/Makefile b/gnu/lib/libregex/Makefile index 224a54655b88..65791b75cb39 100644 --- a/gnu/lib/libregex/Makefile +++ b/gnu/lib/libregex/Makefile @@ -6,8 +6,10 @@ LIB= gnuregex SHLIB_MAJOR= 2 SRCS= regex.c +INCSGROUPS= INCS WRINCS INCS= regex.h -INCSDIR= ${INCLUDEDIR}/gnu +INCSDIR= ${INCLUDEDIR}/gnu +WRINCS= gnuregex.h NOMAN= noman CFLAGS+=-I${.CURDIR} -DHAVE_STRING_H=1 -DSTDC_HEADERS=1 -DNO_POSIX_COMPAT=1 diff --git a/gnu/lib/libregex/gnuregex.h b/gnu/lib/libregex/gnuregex.h new file mode 100644 index 000000000000..4d7246a81ed2 --- /dev/null +++ b/gnu/lib/libregex/gnuregex.h @@ -0,0 +1,3 @@ +/* $FreeBSD$ */ +#warning "<gnuregex.h> has been replaced by <gnu/regex.h>" +#include <gnu/regex.h> |