Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 46225 invoked by uid 500); 13 Sep 2002 21:44:10 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 46214 invoked by uid 500); 13 Sep 2002 21:44:10 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 13 Sep 2002 21:44:10 -0000 Message-ID: <20020913214410.57358.qmail@icarus.apache.org> From: bnicholes@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/build mkconfNW.awk X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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"