marc 99/06/02 13:01:57
Modified: . Makefile.tmpl src CHANGES Log: Fix a bug with the --without-support configure option that was introduced in revision 1.61. It caused an infinite make loop when --without-support was used. Revision Changes Path 1.83 +3 -1 apache-1.3/Makefile.tmpl Index: Makefile.tmpl =================================================================== RCS file: /export/home/cvs/apache-1.3/Makefile.tmpl,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- Makefile.tmpl 1999/05/04 02:55:14 1.82 +++ Makefile.tmpl 1999/06/02 20:01:43 1.83 @@ -164,7 +164,9 @@ build: @echo "===> $(SRC)" @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) build-std - @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) $(build-support) + @if [ "x$(build-support)" != "x" ]; then \ + $(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) $(build-support); \ + fi @touch $(TOP)/$(SRC)/.apaci.build.ok @echo "<=== $(SRC)" 1.1365 +3 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1364 retrieving revision 1.1365 diff -u -r1.1364 -r1.1365 --- CHANGES 1999/06/02 06:30:03 1.1364 +++ CHANGES 1999/06/02 20:01:50 1.1365 @@ -1,5 +1,8 @@ Changes with Apache 1.3.7 + *) Fixed the configure --without-support option so it doesn't result in + an infinite loop. [Marc Slemko] + *) Piped error logs could cause a segfault if an error occured during configuration after a restart. [Aidan Cully <[EMAIL PROTECTED]>] PR#4456