You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1998/06/09 12:30:14 UTC

cvs commit: apache-1.3/src CHANGES Configure

rse         98/06/09 03:30:14

  Modified:    src      CHANGES Configure
  Log:
  Add an additional "dummy" target to the "$(LIB)" target in generated
  modules/xxx/Makefile's to avoid problems with SVR4 Make under "full-DSO"
  situation (no libxxx.a built, only mod_xxx.so's) where LIB and OBJS are empty.
  
  Submitted by: Ralf S. Engelschall, Dean Gaudet, Martin Kraemer
  
  Revision  Changes    Path
  1.902     +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.901
  retrieving revision 1.902
  diff -u -r1.901 -r1.902
  --- CHANGES	1998/06/09 09:35:05	1.901
  +++ CHANGES	1998/06/09 10:30:11	1.902
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.1
   
  +  *) Add an additional "dummy" target to the "$(LIB)" target in generated
  +     modules/xxx/Makefile's to avoid problems with SVR4 Make under "full-DSO"
  +     situation (no libxxx.a built, only mod_xxx.so's) where LIB and OBJS are
  +     empty. [Ralf S. Engelschall, Dean Gaudet, Martin Kraemer]
  +
     *) Replace two bad sprintf() calls with ap_snprintf() variants in
        mod_rewrite. The sprintf()'s were incorrectly introduced recently because
        Ralf didn't recognize that although the ap_psprintf() needs a pool (which
  
  
  
  1.266     +1 -1      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.265
  retrieving revision 1.266
  diff -u -r1.265 -r1.266
  --- Configure	1998/06/08 18:06:43	1.265
  +++ Configure	1998/06/09 10:30:12	1.266
  @@ -1741,7 +1741,7 @@
   
   shlib:	$(SHLIBS)
   
  -$(LIB): $(OBJS)
  +dummy $(LIB): $(OBJS)
   	rm -f $@
   	ar cr $@ $(OBJS)
   	$(RANLIB) $@