summaryrefslogtreecommitdiff
path: root/server/config.m4
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-02-01 21:55:16 +0000
committerRyan Bloom <rbb@apache.org>2001-02-01 21:55:16 +0000
commitdeab760727ef11a968cab76a46717a4c3a89f511 (patch)
tree5872fce2e73d86f55672f3f2951cf2f43be8a01d /server/config.m4
parent288e2cc490719b95f3c5e96469c8e0d78e27f4a8 (diff)
downloadhttpd-deab760727ef11a968cab76a46717a4c3a89f511.tar.gz
Bring mod_status for 2.0 back in line with mod_status for 1.3. This is
basically a straight port of the 1.3 module to 2.0. The MPMs need to be modified a bit to work with mod_status, but prefork, mpmt_pthread, and dexter have already been changed. I will fix perchild tonight. There is a lot of common code that can be abstracted, and there seems to be a small bug with regard to what mpmt_pthread and dexter report as current connections. ExtendedStatus does work again, although until the bug mentioned above is fixed, it isn't as useful on mpmt_pthread and dexter. Next week, I will look at allowing other modules to add data to the STATUS page and possibly to the scoreboard itself. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87949 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/config.m4')
-rw-r--r--server/config.m44
1 files changed, 4 insertions, 0 deletions
diff --git a/server/config.m4 b/server/config.m4
index 0c48f54c17..479fbeafff 100644
--- a/server/config.m4
+++ b/server/config.m4
@@ -49,3 +49,7 @@ dnl ## Check for library functions
AC_CHECK_FUNCS(
syslog \
)
+
+dnl Obsolete scoreboard code uses this.
+ AC_CHECK_HEADERS(sys/times.h)
+ AC_CHECK_FUNCS(times)