You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/12/26 23:46:09 UTC

cvs commit: httpd-2.0/modules/generators config5.m4 config.m4

rbb         00/12/26 14:46:09

  Added:       modules/generators config5.m4
  Removed:     modules/generators config.m4
  Log:
  Move the config.m4 file to config5.m4 in the generators directory so that
  we can actually make the cgi module decision based on MPM.
  
  Revision  Changes    Path
  1.1                  httpd-2.0/modules/generators/config5.m4
  
  Index: config5.m4
  ===================================================================
  dnl modules enabled in this directory by default
  
  dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
  
  APACHE_MODPATH_INIT(generators)
  
  APACHE_MODULE(status, process/thread monitoring, , , no)
  APACHE_MODULE(autoindex, directory listing, , , yes)
  APACHE_MODULE(asis, as-is filetypes, , , yes)
  APACHE_MODULE(info, server information, , , no)
  APACHE_MODULE(suexec, set uid and gid for spawned processes, , , no)
  
  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_MODULE(cgid, CGI scripts, , , yes)
      APACHE_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_MODULE(cgi, CGI scripts, , , yes)
      APACHE_MODULE(cgid, CGI scripts, , , no)
  fi
  
  APACHE_MODPATH_FINISH