summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2011-01-17 11:45:54 +0100
committerRainer Jung <rjung@apache.org>2011-01-17 11:45:54 +0100
commit90e46c5792c05ae0f7fe6a9faeff9bc5f609e27a (patch)
treedd0d54b4d1d2e4cc9b9c45233abe13e41267bd36 /server
parentChange file touching order for util_expr to be in (diff)
downloadapache2-90e46c5792c05ae0f7fe6a9faeff9bc5f609e27a.tar.xz
apache2-90e46c5792c05ae0f7fe6a9faeff9bc5f609e27a.zip
Add server directory to INCLUDES.
util_expr needs its header files and without explicitely adding the directory out of tree builds fail. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1059858 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/config.m44
1 files changed, 4 insertions, 0 deletions
diff --git a/server/config.m4 b/server/config.m4
index 85fa4d1791..dde51ed3dd 100644
--- a/server/config.m4
+++ b/server/config.m4
@@ -13,3 +13,7 @@ AC_CHECK_FUNCS(syslog)
dnl Obsolete scoreboard code uses this.
AC_CHECK_HEADERS(sys/times.h)
AC_CHECK_FUNCS(times)
+
+dnl Add expr header files to INCLUDES
+# util_expr needs header files in server source dir
+APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/server])