diff options
author | Jim Jagielski <jim@apache.org> | 2000-05-03 02:09:05 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2000-05-03 02:09:05 +0200 |
commit | 56faece2adddadd882b08ae927730b5a0c27a876 (patch) | |
tree | 88e3f39fab9cf7a59301e1c77d48d76eed2cd4a8 | |
parent | - checking for thread options is mature (diff) | |
download | apache2-56faece2adddadd882b08ae927730b5a0c27a876.tar.xz apache2-56faece2adddadd882b08ae927730b5a0c27a876.zip |
And preload from the top.
Next on the list: using hints.m4 to set whether to use HSregex and
to select the "default" mpm for each OS type.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85125 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | acinclude.m4 | 1 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index b0427bf9f3..fdd8c6a58b 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -144,6 +144,7 @@ AC_DEFUN(APACHE_ONCE,[ ]) sinclude(lib/apr/threads.m4) +sinclude(lib/apr/hints.m4) dnl dnl APACHE_INADDR_NONE diff --git a/configure.in b/configure.in index 0d3ae683f8..f35d147395 100644 --- a/configure.in +++ b/configure.in @@ -13,6 +13,10 @@ AC_CONFIG_HEADER(include/ap_config_auto.h) APACHE_VERSION=$VERSION APACHE_SUBST(APACHE_VERSION) +dnl +dnl ## Preload our OS configuration +APR_PRELOAD + test "$exec_prefix" = "NONE" && exec_prefix='${prefix}' test "$prefix" = "NONE" && prefix='/usr/local' |