From: Bradley Nicholes Date: Fri, 13 Sep 2002 21:44:09 +0000 (+0000) Subject: Added the new auth modules to the build script for building the default X-Git-Tag: 2.0.42~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=899e5d3861cad8dc45c16c0ed800a5e3a698991a;p=thirdparty%2Fapache%2Fhttpd.git Added the new auth modules to the build script for building the default httpd.conf file git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96793 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/mkconfNW.awk b/build/mkconfNW.awk index fd52102fb94..1be5bc3db22 100644 --- a/build/mkconfNW.awk +++ b/build/mkconfNW.awk @@ -23,9 +23,16 @@ BEGIN { } /@@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"