summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorsascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>2000-12-15 16:56:57 +0000
committersascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>2000-12-15 16:56:57 +0000
commit0eee6ce8ea2d1a76b49f53dd0671e04f386fde6e (patch)
tree7fc8d573a0807c5051f75d65872b427cb7e8ad7e /locks
parentcc72cfda39b68d39a4644ec8f4aa9c66e2be12ad (diff)
downloadlibapr-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 'locks')
-rw-r--r--locks/unix/Makefile.in4
-rw-r--r--locks/unix/locks.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/locks/unix/Makefile.in b/locks/unix/Makefile.in
index fb0c6d9c7..30530fedb 100644
--- a/locks/unix/Makefile.in
+++ b/locks/unix/Makefile.in
@@ -5,7 +5,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
OBJS=locks.o \
diff --git a/locks/unix/locks.c b/locks/unix/locks.c
index 518af1a31..8104e22fe 100644
--- a/locks/unix/locks.c
+++ b/locks/unix/locks.c
@@ -52,7 +52,7 @@
* <http://www.apache.org/>.
*/
-#include "unix/locks.h"
+#include "locks.h"
#include "apr_strings.h"
#include "apr_portable.h"