akosut 96/07/23 15:06:49
Modified: . README src Makefile.tmpl Added: src/regex COPYRIGHT Makefile README WHATSNEW cclass.h cname.h debug.c engine.c main.c mkh regcomp.c regerror.c regex.3 regex.7 regex.h regex2.h regexec.c regfree.c split.c tests utils.h Log: Add Henry Spencer's POSIX regex package to Apache. Reveiwed by: Ben Laurie, Chunk Murcko, Lucid Revision Changes Path 1.4 +6 -0 apache/README Index: README =================================================================== RCS file: /export/home/cvs/apache/README,v retrieving revision 1.3 retrieving revision 1.4 diff -C3 -r1.3 -r1.4 *** README 1996/07/03 06:24:32 1.3 --- README 1996/07/23 22:06:34 1.4 *************** *** 74,76 **** --- 74,82 ---- --------- Please see the file called LICENSE. + + Acknowledgements + ---------------- + + This package contains software written and copyrighted by Henry Spencer. + Please see the file called src/regex/COPYRIGHT. 1.15 +8 -2 apache/src/Makefile.tmpl Index: Makefile.tmpl =================================================================== RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v retrieving revision 1.14 retrieving revision 1.15 diff -C3 -r1.14 -r1.15 *** Makefile.tmpl 1996/06/14 16:24:26 1.14 --- Makefile.tmpl 1996/07/23 22:06:38 1.15 *************** *** 7,12 **** --- 7,14 ---- http_log.o http_protocol.o rfc1413.o util.o util_script.o modules.o buff.o\ md5c.o util_md5.o explain.o http_bprintf.o $(MODULES) + LIBS= regex/libregex.a + .c.o: $(CC) -c $(CFLAGS) $(AUX_CFLAGS) $< *************** *** 19,29 **** @echo "If not, you will at least have to touch Configuration." @false ! httpd: $(OBJS) ! $(CC) $(LFLAGS) $(AUX_LFLAGS) -o httpd $(OBJS) $(EXTRA_LIBS) $(AUX_LIBS) clean: rm -f httpd $(OBJS) *pure* dist.tar: # Assure a semi-sensible configuration going out... --- 21,35 ---- @echo "If not, you will at least have to touch Configuration." @false ! httpd: $(LIBS) $(OBJS) ! $(CC) $(LFLAGS) $(AUX_LFLAGS) -o httpd $(OBJS) $(LIBS) $(EXTRA_LIBS) $(AUX_LIBS) ! ! regex/libregex.a: ! cd regex; make lib CC=$(CC) clean: rm -f httpd $(OBJS) *pure* + cd regex; make clean dist.tar: # Assure a semi-sensible configuration going out...