diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2001-09-13 06:56:55 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2001-09-13 06:56:55 +0000 |
commit | 19679bb4089640635b106ce6b1716b44c9cf7429 (patch) | |
tree | 9da16febb288f2f3ec09bd0a39a687d4a1eee44f /dbm | |
parent | 73b704e7906b83132ee2e95f476200fc5986ee4d (diff) | |
download | libapr-util-19679bb4089640635b106ce6b1716b44c9cf7429.tar.gz |
Get VPATH builds working for APR-util again. We need to include both
builddir and srcdir include directories if we are going to get all of the
header files we need.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58419 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dbm')
-rw-r--r-- | dbm/Makefile.in | 2 | ||||
-rw-r--r-- | dbm/sdbm/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dbm/Makefile.in b/dbm/Makefile.in index 1884ea59..08a019f2 100644 --- a/dbm/Makefile.in +++ b/dbm/Makefile.in @@ -1,5 +1,5 @@ top_builddir=@top_builddir@ -INCLUDES=-I$(top_builddir)/include -I$(top_builddir)/include/private -I$(top_builddir)/../apr/include +INCLUDES=-I$(top_builddir)/include -I$(top_builddir)/include/private -I$(top_builddir)/../apr/include -I$(srcdir)../../apr/include -I$(srcdir)../include -I$(srcdir)../include/private TARGETS = apr_dbm.lo diff --git a/dbm/sdbm/Makefile.in b/dbm/sdbm/Makefile.in index 2f0c57f2..95287065 100644 --- a/dbm/sdbm/Makefile.in +++ b/dbm/sdbm/Makefile.in @@ -1,6 +1,6 @@ top_builddir=@top_builddir@ -INCLUDES=-I$(top_builddir)/include -I$(top_builddir)/../apr/include +INCLUDES=-I$(top_builddir)/include -I$(top_builddir)/../apr/include -I$(srcdir)../../../apr/include -I$(srcdir)../../include TARGETS = sdbm.lo sdbm_hash.lo sdbm_lock.lo sdbm_pair.lo |