diff options
author | sascha <sascha@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-15 16:56:57 +0000 |
---|---|---|
committer | sascha <sascha@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-15 16:56:57 +0000 |
commit | 0eee6ce8ea2d1a76b49f53dd0671e04f386fde6e (patch) | |
tree | 7fc8d573a0807c5051f75d65872b427cb7e8ad7e /dso | |
parent | cc72cfda39b68d39a4644ec8f4aa9c66e2be12ad (diff) | |
download | libapr-0eee6ce8ea2d1a76b49f53dd0671e04f386fde6e.tar.gz |
Fix VPATH support. APR builds now cleanly in a separate build directory.
Submitted by: Mo DeJong <mdejong@cygnus.com>
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60956 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r-- | dso/unix/Makefile.in | 4 | ||||
-rw-r--r-- | dso/unix/dso.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/dso/unix/Makefile.in b/dso/unix/Makefile.in index e4f0e1a90..c3d9c2b42 100644 --- a/dso/unix/Makefile.in +++ b/dso/unix/Makefile.in @@ -6,7 +6,9 @@ CFLAGS=@CFLAGS@ @OPTIM@ LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ $(LIBS) INCDIR=../../include -INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch +INCDIR2=$(INCDIR)/arch +INCDIR3=$(INCDIR)/arch/unix +INCLUDES=-I$(INCDIR) -I$(INCDIR2) -I$(INCDIR3) MKDEP=../../helpers/mkdep.sh LIB=libdso.a diff --git a/dso/unix/dso.c b/dso/unix/dso.c index 14572dbfd..6741449ab 100644 --- a/dso/unix/dso.c +++ b/dso/unix/dso.c @@ -52,7 +52,7 @@ * <http://www.apache.org/>. */ -#include "unix/dso.h" +#include "dso.h" #include "apr_strings.h" #if APR_HAS_DSO |