1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Use -lgnuregex

This commit is contained in:
Andrey A. Chernov 1995-01-11 05:45:48 +00:00
parent dc92878b84
commit 49b95be03e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5500
2 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,10 @@
PROG= diff
SRCS= diff.c analyze.c io.c context.c ed.c normal.c ifdef.c util.c dir.c \
version.c regex.c getopt.c getopt1.c side.c cmpbuf.c
version.c getopt.c getopt1.c side.c cmpbuf.c
CFLAGS+=-DHAVE_CONFIG_H
MAN= diff.1
DPADD+= ${LIBGNUREGEX}
LDADD+= -lgnuregex
.include <bsd.prog.mk>

View File

@ -20,7 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "system.h"
#include <ctype.h>
#include <stdio.h>
#include "regex.h"
#include "gnuregex.h"
#ifndef PR_FILE_NAME
#define PR_FILE_NAME "/bin/pr"