diff options
author | Ryan Bloom <rbb@apache.org> | 2001-02-16 06:53:41 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-02-16 06:53:41 +0100 |
commit | a3557c4e4fe0684d71484a28ccb5b999ca16788d (patch) | |
tree | 41afd5b74361b3af684abcad243c5c76cbcc759c | |
parent | Update copyright to 2001 (diff) | |
download | apache2-a3557c4e4fe0684d71484a28ccb5b999ca16788d.tar.xz apache2-a3557c4e4fe0684d71484a28ccb5b999ca16788d.zip |
Remove all instances of apache_apr_flags="--enable-threads" from the
config.m4 files. If we leave those in, then Apache automatically
enables threads for all machines when a threaded MPM is chosen. We want
people to have to force threads for platforms that don't run threads
well (i.e. FreeBSD).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88185 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | server/mpm/mpmt_pthread/config.m4 | 1 | ||||
-rw-r--r-- | server/mpm/perchild/config.m4 | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/server/mpm/mpmt_pthread/config.m4 b/server/mpm/mpmt_pthread/config.m4 index e58b9a2da6..d91092ad87 100644 --- a/server/mpm/mpmt_pthread/config.m4 +++ b/server/mpm/mpmt_pthread/config.m4 @@ -1,7 +1,6 @@ dnl ## XXX - Need a more thorough check of the proper flags to use if test "$MPM_NAME" = "mpmt_pthread" ; then - apache_apr_flags="--enable-threads" APACHE_FAST_OUTPUT(server/mpm/$MPM_NAME/Makefile) diff --git a/server/mpm/perchild/config.m4 b/server/mpm/perchild/config.m4 index 4e8c94af84..355cc3ca41 100644 --- a/server/mpm/perchild/config.m4 +++ b/server/mpm/perchild/config.m4 @@ -1,7 +1,6 @@ dnl ## XXX - Need a more thorough check of the proper flags to use if test "$MPM_NAME" = "perchild" ; then - apache_apr_flags="--enable-threads" APACHE_FAST_OUTPUT(server/mpm/$MPM_NAME/Makefile) APACHE_MPM_PTHREAD |