diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1995-01-11 06:42:25 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1995-01-11 06:42:25 +0000 |
| commit | 4efe110a6d7fe98f0c4398d38da6dd00da01d565 (patch) | |
| tree | 4c4f272c6d008364c6a653767402967d89eca35a /gnu/usr.bin | |
| parent | e82aeeb5ef774368d8382505ac72f67b0cd1c5ea (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin')
| -rw-r--r-- | gnu/usr.bin/cvs/cvs/Makefile | 4 | ||||
| -rw-r--r-- | gnu/usr.bin/cvs/cvs/cvs.h | 2 | ||||
| -rw-r--r-- | gnu/usr.bin/cvs/lib/Makefile | 5 |
3 files changed, 5 insertions, 6 deletions
diff --git a/gnu/usr.bin/cvs/cvs/Makefile b/gnu/usr.bin/cvs/cvs/Makefile index d506fd155ebd..115e24681195 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile +++ b/gnu/usr.bin/cvs/cvs/Makefile @@ -7,8 +7,8 @@ PROG = ncvs CFLAGS += -I${.CURDIR}/../lib \ -DDIRENT -DSTDC_HEADERS -DPOSIX -DBROKEN_SIGISMEMBER \ -DFTIME_MISSING -DHAVE_TIMEZONE -DUTIME_NULL_MISSING -DPADD+= ${LIBCVS} -LDADD+= -lcvs +DPADD+= ${LIBCVS} ${LIBGNUREGEX} +LDADD+= -lcvs -lgnuregex .if defined(FREEBSD_DEVELOPER) CFLAGS+= -DFREEBSD_DEVELOPER diff --git a/gnu/usr.bin/cvs/cvs/cvs.h b/gnu/usr.bin/cvs/cvs/cvs.h index 3e1f8f457782..d8296a07fad1 100644 --- a/gnu/usr.bin/cvs/cvs/cvs.h +++ b/gnu/usr.bin/cvs/cvs/cvs.h @@ -7,7 +7,7 @@ #include <signal.h> #include "hash.h" #include "rcs.h" -#include "regex.h" +#include "gnuregex.h" #include "fnmatch.h" #include "getopt.h" #include "wait.h" diff --git a/gnu/usr.bin/cvs/lib/Makefile b/gnu/usr.bin/cvs/lib/Makefile index 7712efc6e892..56ab922d91ad 100644 --- a/gnu/usr.bin/cvs/lib/Makefile +++ b/gnu/usr.bin/cvs/lib/Makefile @@ -3,13 +3,12 @@ LIB = cvs CFLAGS += -I${.CURDIR} -I${.CURDIR}/../cvs -DFTIME_MISSING -DHAVE_TIMEZONE SRCS = argmatch.c error.c getopt.c sighandle.c strippath.c stripslash.c yesno.c \ - getdate.y fnmatch.c regex.c subr.c myndbm.c hash.c + getdate.y fnmatch.c subr.c myndbm.c hash.c CLEANFILES+= getdate.c y.tab.h NOPROFILE= yes -install: - @echo -n +install:; .include <bsd.lib.mk> |
