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:44:10 UTC

cvs commit: httpd-2.0/build mkconfNW.awk

bnicholes    2002/09/13 14:44:10

  Modified:    build    mkconfNW.awk
  Log:
  Added the new auth modules to the build script for building the default
  httpd.conf file
  
  Revision  Changes    Path
  1.7       +10 -3     httpd-2.0/build/mkconfNW.awk
  
  Index: mkconfNW.awk
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/build/mkconfNW.awk,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- mkconfNW.awk	31 May 2002 17:52:51 -0000	1.6
  +++ mkconfNW.awk	13 Sep 2002 21:44:09 -0000	1.7
  @@ -23,9 +23,16 @@
   }
   
   /@@LoadModule@@/ {
  -    print "#LoadModule auth_anon_module modules/authanon.nlm"
  -    print "#LoadModule auth_dbm_module modules/authdbm.nlm"
  -    print "#LoadModule auth_digest_module modules/digest.nlm"
  +    print "#LoadModule auth_basic_module modules/authbasc.nlm"
  +    print "#LoadModule auth_digest_module modules/authdigt.nlm"
  +    print "#LoadModule authn_anon_module modules/authnano.nlm"
  +    print "#LoadModule authn_dbm_module modules/authndbm.nlm"
  +    print "#LoadModule authn_default_module modules/authndef.nlm"
  +    print "#LoadModule authn_file_module modules/authnfil.nlm"
  +    print "#LoadModule authz_dbm_module modules/authzdbm.nlm"
  +    print "#LoadModule authz_default_module modules/authzdef.nlm"
  +    print "#LoadModule authz_groupfile_module modules/authzgrp.nlm"
  +    print "#LoadModule authz_user_module modules/authzusr.nlm"
       print "#LoadModule cern_meta_module modules/cernmeta.nlm"
       print "#LoadModule dav_module modules/mod_dav.nlm"
       print "#LoadModule dav_fs_module modules/moddavfs.nlm"