diff options
author | Stefan Fritsch <sf@apache.org> | 2010-06-13 19:50:54 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-06-13 19:50:54 +0200 |
commit | ed06b71981674c609e3520e0f475d7358067fb12 (patch) | |
tree | 0efab6c7756d8efb1058d7173092b0751d98346d /modules/proxy/mod_serf.h | |
parent | Updates. (diff) | |
download | apache2-ed06b71981674c609e3520e0f475d7358067fb12.tar.xz apache2-ed06b71981674c609e3520e0f475d7358067fb12.zip |
Fix MPM event/libserf build problems: If libserf was installed during build,
MPM event was picking up the headers but not linking with libserf, causing
unresolved symbol errors.
Now build MPM event with or without serf support depending on --with-serf
being specified or not.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@954273 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy/mod_serf.h')
-rw-r--r-- | modules/proxy/mod_serf.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/proxy/mod_serf.h b/modules/proxy/mod_serf.h index 2aaaa3dc3b..90353ad305 100644 --- a/modules/proxy/mod_serf.h +++ b/modules/proxy/mod_serf.h @@ -26,11 +26,8 @@ #if !defined(WIN32) && !defined(NETWARE) #include "ap_config_auto.h" #endif -#ifdef HAVE_SERF_H +#ifdef HAVE_SERF #include "serf.h" -#ifndef AP_HAS_SERF -#define AP_HAS_SERF 1 -#endif #endif #include "ap_provider.h" |