summaryrefslogtreecommitdiff
path: root/support/config.m4
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2011-12-17 17:03:59 +0000
committerGraham Leggett <minfrin@apache.org>2011-12-17 17:03:59 +0000
commit9ad824e7932904bb514a39bb86921f1002508b31 (patch)
tree2dccc5741a4cde65eddd482918796256356375c5 /support/config.m4
parent0a914256967aec872a9ba8651fb009c37d4f8cf3 (diff)
downloadhttpd-9ad824e7932904bb514a39bb86921f1002508b31.tar.gz
mod_firehose: Add a new debugging module able to record traffic
passing through the server in such a way that connections and/or requests be reconstructed and replayed. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1215525 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/config.m4')
-rw-r--r--support/config.m411
1 files changed, 11 insertions, 0 deletions
diff --git a/support/config.m4 b/support/config.m4
index 4865e38ec2..c3cce10874 100644
--- a/support/config.m4
+++ b/support/config.m4
@@ -8,6 +8,7 @@ checkgid_LTFLAGS=""
htcacheclean_LTFLAGS=""
httxt2dbm_LTFLAGS=""
fcgistarter_LTFLAGS=""
+firehose_LTFLAGS=""
AC_ARG_ENABLE(static-support,APACHE_HELP_STRING(--enable-static-support,Build a statically linked version of the support binaries),[
if test "$enableval" = "yes" ; then
@@ -21,6 +22,7 @@ if test "$enableval" = "yes" ; then
APR_ADDTO(htcacheclean_LTFLAGS, [-static])
APR_ADDTO(httxt2dbm_LTFLAGS, [-static])
APR_ADDTO(fcgistarter_LTFLAGS, [-static])
+ APR_ADDTO(firehose_LTFLAGS, [-static])
fi
])
@@ -114,6 +116,15 @@ fi
])
APACHE_SUBST(fcgistarter_LTFLAGS)
+AC_ARG_ENABLE(static-firehose,APACHE_HELP_STRING(--enable-static-firehose,Build a statically linked version of firehose),[
+if test "$enableval" = "yes" ; then
+ APR_ADDTO(firehose_LTFLAGS, [-static])
+else
+ APR_REMOVEFROM(firehose, [-static])
+fi
+])
+APACHE_SUBST(firehose_LTFLAGS)
+
# Configure or check which of the non-portable support programs can be enabled.
NONPORTABLE_SUPPORT=""