You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bn...@apache.org on 2002/09/13 23:43:22 UTC

cvs commit: httpd-2.0/os/netware modules.c

bnicholes    2002/09/13 14:43:22

  Modified:    .        NWGNUmakefile
               os/netware modules.c
  Log:
  Removed access_module, auth_module and added authz_host_module in
  order to comply with the new auth module architecture
  
  Revision  Changes    Path
  1.9       +1 -2      httpd-2.0/NWGNUmakefile
  
  Index: NWGNUmakefile
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/NWGNUmakefile,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- NWGNUmakefile	6 Sep 2002 23:09:05 -0000	1.8
  +++ NWGNUmakefile	13 Sep 2002 21:43:22 -0000	1.9
  @@ -194,11 +194,10 @@
   	$(OBJDIR)/listen.o \
   	$(OBJDIR)/log.o \
   	$(OBJDIR)/main.o \
  -	$(OBJDIR)/mod_access.o \
  +	$(OBJDIR)/mod_authz_host.o \
   	$(OBJDIR)/mod_actions.o \
   	$(OBJDIR)/mod_alias.o \
   	$(OBJDIR)/mod_asis.o \
  -	$(OBJDIR)/mod_auth.o \
   	$(OBJDIR)/mod_autoindex.o \
   	$(OBJDIR)/mod_cgi.o \
   	$(OBJDIR)/mod_dir.o \
  
  
  
  1.5       +3 -6      httpd-2.0/os/netware/modules.c
  
  Index: modules.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/os/netware/modules.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- modules.c	31 May 2002 17:16:08 -0000	1.4
  +++ modules.c	13 Sep 2002 21:43:22 -0000	1.5
  @@ -12,8 +12,7 @@
   extern module http_module;
   extern module so_module;
   extern module mime_module;
  -extern module access_module;
  -extern module auth_module;
  +extern module authz_host_module;
   extern module negotiation_module;
   extern module include_module;
   extern module autoindex_module;
  @@ -36,8 +35,7 @@
     &http_module,
     &so_module,
     &mime_module,
  -  &access_module,
  -  &auth_module,
  +  &authz_host_module,
     &negotiation_module,
     &include_module,
     &autoindex_module,
  @@ -62,8 +60,7 @@
     &http_module,
     &so_module,
     &mime_module,
  -  &access_module,
  -  &auth_module,
  +  &authz_host_module,
     &negotiation_module,
     &include_module,
     &autoindex_module,