From: Bruce Momjian Date: Mon, 16 Sep 2002 16:02:43 +0000 (+0000) Subject: Remove retest Makefile entry because it does not compile. X-Git-Tag: REL7_3~472 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a2ba9a76b8a6ee0a704d1ea51d29551c05619b4e;p=thirdparty%2Fpostgresql.git Remove retest Makefile entry because it does not compile. --- diff --git a/src/backend/regex/Makefile b/src/backend/regex/Makefile index c911e68ee5a..a5c1fc4337a 100644 --- a/src/backend/regex/Makefile +++ b/src/backend/regex/Makefile @@ -4,7 +4,7 @@ # Makefile for regex # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/regex/Makefile,v 1.18 2002/09/03 21:45:42 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/regex/Makefile,v 1.19 2002/09/16 16:02:43 momjian Exp $ # #------------------------------------------------------------------------- @@ -24,8 +24,11 @@ SUBSYS.o: $(OBJS) regexec.o: regexec.c engine.c -retest: retest.o SUBSYS.o $(DEBUGOBJ) - $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o $@ +# retest will not compile because multibyte is now enabled by default +# and the multibyte calls require /mmgr, /adt, and other calls that +# are complex for linkage, bjm 2002-09-16 +#retest: retest.o SUBSYS.o $(DEBUGOBJ) +# $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o $@ clean: rm -f SUBSYS.o $(OBJS) retest retest.o