You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2002/11/30 19:45:24 UTC

cvs commit: httpd-2.0/server provider.c Makefile.in

wrowe       2002/11/30 10:45:23

  Modified:    .        Tag: APACHE_2_0_BRANCH NWGNUmakefile libhttpd.dsp
               build    Tag: APACHE_2_0_BRANCH nw_export.inc
               server   Tag: APACHE_2_0_BRANCH Makefile.in
  Added:       include  Tag: APACHE_2_0_BRANCH ap_provider.h
               server   Tag: APACHE_2_0_BRANCH provider.c
  Log:
    WHOA!  Fix the collatteral damage I caused by removing provider.
  
    mod_dav is also retrofitted for the generic ap_provider API.  Restore
    it to its 2.1 state for mod_dav (and of course, if someone wants to
    backport the aaa changes without the module names overhaul, they will
    need this API.)
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.13.2.2  +1 -0      httpd-2.0/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/NWGNUmakefile,v
  retrieving revision 1.13.2.1
  retrieving revision 1.13.2.2
  diff -u -r1.13.2.1 -r1.13.2.2
  --- NWGNUmakefile	30 Nov 2002 17:49:36 -0000	1.13.2.1
  +++ NWGNUmakefile	30 Nov 2002 18:45:23 -0000	1.13.2.2
  @@ -219,6 +219,7 @@
   	$(OBJDIR)/pcre.o \
   	$(OBJDIR)/pcreposix.o \
   	$(OBJDIR)/protocol.o \
  +	$(OBJDIR)/provider.o \
   	$(OBJDIR)/request.o \
   	$(OBJDIR)/rfc1413.o \
   	$(OBJDIR)/scoreboard.o \
  
  
  
  1.51.2.2  +4 -0      httpd-2.0/libhttpd.dsp
  
  Index: libhttpd.dsp
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/libhttpd.dsp,v
  retrieving revision 1.51.2.1
  retrieving revision 1.51.2.2
  diff -u -r1.51.2.1 -r1.51.2.2
  --- libhttpd.dsp	30 Nov 2002 17:49:36 -0000	1.51.2.1
  +++ libhttpd.dsp	30 Nov 2002 18:45:23 -0000	1.51.2.2
  @@ -583,6 +583,10 @@
   # End Source File
   # Begin Source File
   
  +SOURCE=.\server\provider.c
  +# End Source File
  +# Begin Source File
  +
   SOURCE=.\server\scoreboard.c
   # End Source File
   # Begin Source File
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.4.2.2   +1 -0      httpd-2.0/build/nw_export.inc
  
  Index: nw_export.inc
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/nw_export.inc,v
  retrieving revision 1.4.2.1
  retrieving revision 1.4.2.2
  diff -u -r1.4.2.1 -r1.4.2.2
  --- nw_export.inc	30 Nov 2002 17:56:47 -0000	1.4.2.1
  +++ nw_export.inc	30 Nov 2002 18:45:23 -0000	1.4.2.2
  @@ -22,6 +22,7 @@
   #include "ap_listen.h"
   #include "ap_mmn.h"
   #include "ap_mpm.h"
  +#include "ap_provider.h"
   #include "ap_release.h"
   #include "http_config.h"
   #include "http_connection.h"
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.2   +0 -0      httpd-2.0/include/ap_provider.h
  
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.75.2.4  +1 -1      httpd-2.0/server/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/Makefile.in,v
  retrieving revision 1.75.2.3
  retrieving revision 1.75.2.4
  diff -u -r1.75.2.3 -r1.75.2.4
  --- Makefile.in	30 Nov 2002 17:49:37 -0000	1.75.2.3
  +++ Makefile.in	30 Nov 2002 18:45:23 -0000	1.75.2.4
  @@ -14,7 +14,7 @@
   	rfc1413.c connection.c listen.c \
   	mpm_common.c util_charset.c util_debug.c util_xml.c \
   	util_filter.c $(top_builddir)/server/exports.c buildmark.c \
  -	scoreboard.c error_bucket.c protocol.c core.c request.c
  +	scoreboard.c error_bucket.c protocol.c core.c request.c provider.c
   
   TARGETS = delete-exports $(LTLIBRARY_NAME) $(CORE_IMPLIB_FILE) export_vars.h httpd.exp
   
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.2   +0 -0      httpd-2.0/server/provider.c