On 06/27/2016 03:45 PM, [email protected] wrote: > Author: wrowe > Date: Mon Jun 27 13:45:02 2016 > New Revision: 1750335 > > URL: http://svn.apache.org/viewvc?rev=1750335&view=rev > Log: > Ensure not-selected means 'no', once an APACHE_MODULE enable_foo is processed > > Modified: > httpd/httpd/trunk/acinclude.m4 > > Modified: httpd/httpd/trunk/acinclude.m4 > URL: > http://svn.apache.org/viewvc/httpd/httpd/trunk/acinclude.m4?rev=1750335&r1=1750334&r2=1750335&view=diff > ============================================================================== > --- httpd/httpd/trunk/acinclude.m4 (original) > +++ httpd/httpd/trunk/acinclude.m4 Mon Jun 27 13:45:02 2016 > @@ -375,6 +375,8 @@ AC_DEFUN([APACHE_MODULE],[ > "$force_$1" != "no" ; then > enable_$1=$module_default > _apmod_extra_msg=" ($module_selection)" > + else > + enable_$1=no
What if enable_$1 is set to shared by the the user of ./configure? Wouldn't that get overriden here? Regards RĂ¼diger
