You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dg...@hyperreal.org on 1998/03/28 13:06:56 UTC

cvs commit: apache-1.3/src/modules/experimental Makefile.tmpl

dgaudet     98/03/28 04:06:55

  Modified:    src      CHANGES
               src/ap   Makefile.tmpl
               src/modules/experimental Makefile.tmpl
  Log:
  a few cleanups after apapi_vformatter
  
  Revision  Changes    Path
  1.742     +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.741
  retrieving revision 1.742
  diff -u -r1.741 -r1.742
  --- CHANGES	1998/03/28 11:58:13	1.741
  +++ CHANGES	1998/03/28 12:06:52	1.742
  @@ -8,6 +8,10 @@
        various bits of code which used ap_snprintf()/pstrdup().
        [Dean Gaudet]
   
  +  *) PORT: HAVE_SNPRINTF doesn't do anything any longer.  This is because
  +     ap_snprintf() has different semantics and formatting codes than
  +     snprintf().  [Dean Gaudet]
  +
     *) SIGXCPU and SIGXFSZ are now reset to SIG_DFL at boot-time.  This
        is necessary on at least Solaris where the /etc/rc?.d scripts
        are run with these signals ignored, and "SIG_IGN" settings are
  
  
  
  1.18      +4 -2      apache-1.3/src/ap/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/ap/Makefile.tmpl,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- Makefile.tmpl	1998/03/17 15:42:26	1.17
  +++ Makefile.tmpl	1998/03/28 12:06:54	1.18
  @@ -51,8 +51,10 @@
    ../os/unix/os.h $(INCDIR)/hide.h $(INCDIR)/hsregex.h \
    $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
    $(INCDIR)/util_uri.h $(INCDIR)/http_log.h
  -ap_snprintf.o: ap_snprintf.c $(INCDIR)/conf.h ../os/unix/os.h \
  - $(INCDIR)/hide.h $(INCDIR)/hsregex.h
  +ap_snprintf.o: ap_snprintf.c $(INCDIR)/httpd.h $(INCDIR)/conf.h \
  + ../os/unix/os.h $(INCDIR)/hide.h $(INCDIR)/hsregex.h \
  + $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  + $(INCDIR)/util_uri.h
   ap_strings.o: ap_strings.c $(INCDIR)/httpd.h $(INCDIR)/conf.h \
    ../os/unix/os.h $(INCDIR)/hide.h $(INCDIR)/hsregex.h \
    $(INCDIR)/alloc.h $(INCDIR)/buff.h $(INCDIR)/ap.h \
  
  
  
  1.6       +2 -1      apache-1.3/src/modules/experimental/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/experimental/Makefile.tmpl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Makefile.tmpl	1998/03/17 15:42:29	1.5
  +++ Makefile.tmpl	1998/03/28 12:06:55	1.6
  @@ -20,4 +20,5 @@
    $(INCDIR)/hsregex.h $(INCDIR)/alloc.h $(INCDIR)/buff.h \
    $(INCDIR)/ap.h $(INCDIR)/util_uri.h \
    $(INCDIR)/http_config.h $(INCDIR)/http_log.h \
  - $(INCDIR)/http_protocol.h $(INCDIR)/http_request.h
  + $(INCDIR)/http_protocol.h $(INCDIR)/http_request.h \
  + $(INCDIR)/http_core.h