Commit e452352c authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Add cgi and cgid back into the configuration system.

Submitted by:	Paul J. Reder <rederpj@raleigh.ibm.com>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87237 13f79535-47bb-0310-9956-ffa450edef68
parent 8f8e05d5
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -17,6 +17,18 @@ APACHE_CHECK_GENERATOR_MODULE(suexec, set uid and gid for spawned processes, , n

LTFLAGS="$LTFLAGS -export-dynamic"

if test "$apache_cv_mpm" = "mpmt_pthread" -o "$apache_cv_mpm" = "dexter"; then
# if we are using a threaded MPM, we will get better performance with
# mod_cgid, so make it the default.
    APACHE_CHECK_GENERATOR_MODULE(cgid, CGI scripts, , yes)
    APACHE_CHECK_GENERATOR_MODULE(cgi, CGI scripts, , no)
else
# if we are using a non-threaded MPM, it makes little sense to use
# mod_cgid, and it just opens up holes we don't need.  Make mod_cgi the         # default
    APACHE_CHECK_GENERATOR_MODULE(cgi, CGI scripts, , yes)
    APACHE_CHECK_GENERATOR_MODULE(cgid, CGI scripts, , no)
fi

APACHE_MODPATH_FINISH
    
APACHE_SUBST(STANDARD_LIBS)