summaryrefslogtreecommitdiffstats
path: root/modules/generators/config5.m4 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* configure: don't overwrite other_targets when mod_suexec is enabledJacob Champion2017-05-251-1/+1
| | | | | | Just append to the list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpdunit@1796201 13f79535-47bb-0310-9956-ffa450edef68
* partially reverting r1403043: Titled xforms but modifying a config5.m4Igor Galić2012-10-281-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1403044 13f79535-47bb-0310-9956-ffa450edef68
* xformsIgor Galić2012-10-281-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1403043 13f79535-47bb-0310-9956-ffa450edef68
* Change module sets and default activation status:Rainer Jung2011-11-121-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Promoted from "most" to "few" - mod_headers 2) Demoted from "yes" to "most" - mod_actions - mod_allowmethods - mod_auth_form - mod_buffer - mod_cgi(d) - mod_include - mod_negotiation - mod_ratelimit - mod_request - mod_userdir Remember: default module set is "most", but only the LoadModule lines of all modules except "yes" are commented out by default. The following modules will now be loaded by default: - mod_access_compat - mod_alias - mod_auth_basic - mod_authn_core - mod_authn_file - mod_authz_core - mod_authz_groupfile - mod_authz_host - mod_authz_user - mod_autoindex - mod_dir - mod_env - mod_filter - mod_headers - mod_log_config - mod_mime - mod_mpm_event - mod_reqtimeout - mod_setenvif - mod_status - mod_unixd - mod_version git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1201111 13f79535-47bb-0310-9956-ffa450edef68
* adjustments of build priorities of modules without special dependenciesStefan Fritsch2011-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | all -> most: - mod_sed reallyall -> most: - mod_log_debug reallyall -> all: - mod_dav_lock - mod_echo - mod_charset_lite - mod_slotmem_plain - mod_dialup few -> all: - mod_data - mod_reflector - mod_asis most -> all: - mod_heartbeat - mod_heartmonitor - mod_watchdog most -> reallyall: - mod_imagemap - mod_cern_meta - mod_ident See thread at http://mail-archives.apache.org/mod_mbox/httpd-dev/201107.mbox/%3C201107052321.56063.sf@sfritsch.de%3E git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1146227 13f79535-47bb-0310-9956-ffa450edef68
* rework choice of cgi implementation, handling MinGWJeff Trawick2011-04-071-6/+21
| | | | | | | PR: 49535 (subset of reported issues, replacement for supplied patch) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1089951 13f79535-47bb-0310-9956-ffa450edef68
* Add to modules' help text (displayed by ./configure -h) moreDaniel Earl Poirier2010-11-011-4/+4
| | | | | | | | information that will be useful in deciding whether to enable them or not. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1029814 13f79535-47bb-0310-9956-ffa450edef68
* Always make mod_*.h files available where they exist, modpath by modpathWilliam A. Rowe Jr2009-08-281-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@808722 13f79535-47bb-0310-9956-ffa450edef68
* * modules/generators/config5.m4: Improve Solaris 10 check in mod_cgid toJustin Erenkrantz2005-10-181-7/+25
| | | | | | | know about the now-released patches that fix the AF_UNIX bugs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@326018 13f79535-47bb-0310-9956-ffa450edef68
* mod_cgid: Refuse to work on Solaris 10 due to OS bugs.Justin Erenkrantz2005-08-301-1/+20
| | | | | | | PR: 34264 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@264866 13f79535-47bb-0310-9956-ffa450edef68
* Add ap_mpm_is_experimental and ap_mpm_is_threaded. Use these instead of ↵Paul Querna2005-03-081-1/+1
| | | | | | checking for specific MPMs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@156574 13f79535-47bb-0310-9956-ffa450edef68
* Since prefork is currently the only non-threaded MPM, check for it, instead ↵Paul Querna2005-03-081-1/+1
| | | | | | of testing for each threaded MPM type. This enables mod_cgid on the Event MPM by default, which is a "Good Thing"(tm). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@156572 13f79535-47bb-0310-9956-ffa450edef68
* Use -export-dynamic only when linking an httpd which includes mod_so,Joe Orton2004-01-081-2/+0
| | | | | | | | | | | | | | | not when linking modules or support programs. * modules/aaa/config.m4, modules/arch/win32/config.m4, modules/cache/config.m4, modules/echo/config.m4, modules/filters/config.m4, modules/generators/config5.m4, modules/metadata/config.m4: Don't add -export-dynamic to LT_LDFLAGS. * modules/mappers/config9.m4: Add -export-dynamic to HTTPD_LDFLAGS when mod_so is enabled. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102235 13f79535-47bb-0310-9956-ffa450edef68
* remove test_pass_brigade; it lives in httpd-test not hereDoug MacEachern2001-11-211-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92107 13f79535-47bb-0310-9956-ffa450edef68
* comment out module test_pass_brigade as it doesn't existIan Holsman2001-11-211-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92105 13f79535-47bb-0310-9956-ffa450edef68
* Fix a bug in our output filter buffering. If a lot of small brigades areRyan Bloom2001-11-211-0/+1
| | | | | | | | | | | | sent, the core will send the first 16 buckets, regardless of how much data there is. In the pathological case, this can cause a lot of 16 byte packets. Now, if we see less than AP_MIN_BYTES, we combine all of the buckets into a single bucket to be sent in a later packet. This can cause a lot of memory copies, but it eases our network traffic. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92097 13f79535-47bb-0310-9956-ffa450edef68
* Get rid of threaded MPM. This commit has the actual code changes.Jeff Trawick2001-11-191-1/+1
| | | | | | | The deletes come next. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92036 13f79535-47bb-0310-9956-ffa450edef68
* We want to use mod_cgid with the worker MPM as well.Ryan Bloom2001-08-091-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90058 13f79535-47bb-0310-9956-ffa450edef68
* Fix httpd's definition of LTFLAGS to be consistent with that of aprRoy T. Fielding2001-05-121-1/+1
| | | | | | | | | and apr-util, allow it to be overridden by the configure command-line (default="--silent") and introduce LT_LDFLAGS to replace what we were formally abusing as LTFLAGS. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89094 13f79535-47bb-0310-9956-ffa450edef68
* Completely revamp configure so that it preserves the standard makeRoy T. Fielding2001-04-291-1/+1
| | | | | | | | | | | | | variables CPPFLAGS, CFLAGS, CXXFLAGS, LDFLAGS and LIBS by moving the configure additions to EXTRA_* variables. Also, allow the user to specify NOTEST_* values for all of the above, which eliminates the need for THREAD_CPPFLAGS, THREAD_CFLAGS, and OPTIM. Fix the setting of INCLUDES and EXTRA_INCLUDES. Check flags as they are added to avoid pointless duplications. Fix the order in which flags are given on the compile and link lines. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88960 13f79535-47bb-0310-9956-ffa450edef68
* Enable mod_status by default. This matches the docs and what 1.3 does.Ryan Bloom2001-03-251-1/+1
| | | | | | | Submitted by: Ed Korthof git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88578 13f79535-47bb-0310-9956-ffa450edef68
* Change a few "no" module to "most". Leave suexec: it must be explicitlyGreg Stein2001-02-181-2/+2
| | | | | | | enabled. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88224 13f79535-47bb-0310-9956-ffa450edef68
* Rename the mpmt_pthread module to threaded. This module has moved fromRyan Bloom2001-02-161-1/+1
| | | | | | | the old mpmt_pthread directory to the new threaded directory. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88199 13f79535-47bb-0310-9956-ffa450edef68
* If --enable-suexec is specified, then we need to build suexecRyan Bloom2001-01-211-1/+2
| | | | | | | | | | | | automatically. This bit me multiple times last night as I was trying to setup apache.org. I would make a change to the configuration, run make; make install, and it would fail. The problem was that suexec wasn't getting re-compiled ever, so my changes weren't getting picked up. This solves that problem, by making sure that suexec gets compiled if it was specified on the configure line. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87779 13f79535-47bb-0310-9956-ffa450edef68
* Move the config.m4 file to config5.m4 in the generators directory so thatRyan Bloom2000-12-261-0/+28
we can actually make the cgi module decision based on MPM. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87527 13f79535-47bb-0310-9956-ffa450edef68