From 60443026de159e148677a1aa586cc37931944670 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 11 Oct 2007 16:39:02 +0100 Subject: [PATCH] Use regex.[ch] from msysGit's /git Signed-off-by: Johannes Schindelin --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a29654a..6e1080f 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ MAJOR=2 MINOR=1 CC=gcc CFLAGS=-g -O2 -Wall -CFLAGS+=-I. -DVERSION=\"$(MAJOR).$(MINOR)\" +CFLAGS+=-I. -I/git/compat -DVERSION=\"$(MAJOR).$(MINOR)\" prefix?=/usr/local OBJS=\ tsearch/tsearch.o\ @@ -30,7 +30,7 @@ OBJS=\ all: cvsps cvsps: $(OBJS) - $(CC) -o cvsps $(OBJS) -lz -lregex -lwsock32 + $(CC) -o cvsps $(OBJS) -lz /git/compat/regex.c -lwsock32 install: [ -d $(prefix)/bin ] || mkdir -p $(prefix)/bin -- 2.11.4.GIT