diff options
author | Graham Leggett <minfrin@apache.org> | 2008-04-04 17:58:15 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2008-04-04 17:58:15 +0200 |
commit | 2b7c89aab4ade1c2c82cb2affccc45e65a342026 (patch) | |
tree | 1f255c43584bcce5c1e0a97791d024e3ac1c8f77 /configure.in | |
parent | Add condition for <If> sections to core config merge (diff) | |
download | apache2-2b7c89aab4ade1c2c82cb2affccc45e65a342026.tar.xz apache2-2b7c89aab4ade1c2c82cb2affccc45e65a342026.zip |
mod_session: Add a generic session interface to unify the different
attempts at saving persistent sessions across requests.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@644746 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 65bad7c024..10450911b4 100644 --- a/configure.in +++ b/configure.in @@ -204,7 +204,7 @@ if test "$abs_builddir" != "$abs_srcdir"; then APR_ADDTO(INCLUDES, [-I\$(top_builddir)/include]) fi -APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/os/\$(OS_DIR) -I\$(top_srcdir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_srcdir)/modules/http -I\$(top_srcdir)/modules/filters -I\$(top_srcdir)/modules/proxy -I\$(top_srcdir)/include -I\$(top_srcdir)/modules/generators -I\$(top_srcdir)/modules/mappers -I\$(top_srcdir)/modules/database]) +APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/os/\$(OS_DIR) -I\$(top_srcdir)/server/mpm/\$(MPM_SUBDIR_NAME) -I\$(top_srcdir)/modules/http -I\$(top_srcdir)/modules/filters -I\$(top_srcdir)/modules/proxy -I\$(top_srcdir)/modules/session -I\$(top_srcdir)/include -I\$(top_srcdir)/modules/generators -I\$(top_srcdir)/modules/mappers -I\$(top_srcdir)/modules/database]) # apr/apr-util --includes may pick up system paths for dependent # libraries, so ensure these are later in INCLUDES than local source |