You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gs...@apache.org on 2013/05/30 23:40:59 UTC

svn commit: r1488023 - /httpd/httpd/branches/2.4.x/build/installwinconf.awk

Author: gsmith
Date: Thu May 30 21:40:59 2013
New Revision: 1488023

URL: http://svn.apache.org/r1488023
Log:
Backport r1488022
Add missing LoadModule line for mod_auth_form

Modified:
    httpd/httpd/branches/2.4.x/build/installwinconf.awk

Modified: httpd/httpd/branches/2.4.x/build/installwinconf.awk
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/build/installwinconf.awk?rev=1488023&r1=1488022&r2=1488023&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/build/installwinconf.awk (original)
+++ httpd/httpd/branches/2.4.x/build/installwinconf.awk Thu May 30 21:40:59 2013
@@ -99,6 +99,7 @@ BEGIN {
           print "LoadModule asis_module modules/mod_asis.so" > dstfl;
           print "LoadModule auth_basic_module modules/mod_auth_basic.so" > dstfl;
           print "#LoadModule auth_digest_module modules/mod_auth_digest.so" > dstfl;
+          print "#LoadModule auth_form_module modules/mod_auth_form.so" > dstfl;
           print "#LoadModule authn_anon_module modules/mod_authn_anon.so" > dstfl;
           print "LoadModule authn_core_module modules/mod_authn_core.so" > dstfl;
           print "#LoadModule authn_dbd_module modules/mod_authn_dbd.so" > dstfl;