summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Reid <dreid@apache.org>2000-12-10 12:16:49 +0000
committerDavid Reid <dreid@apache.org>2000-12-10 12:16:49 +0000
commit2d9e1bfd4c878c882466e04a8b33227edd7dc9d7 (patch)
tree740a5ed804da2d63c6740c93296eb0a0e7095093
parent05aa6429b6d067b89e688a0a4c31c10be6a41c29 (diff)
downloadapr-2d9e1bfd4c878c882466e04a8b33227edd7dc9d7.tar.gz
Change the includes in the "correct" way to allow building on
BeOS :) Submitted by: Ryan Bloom <rbb@covalent.net> Reviewed by: David Reid <dreid@apache.org> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60928 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--dso/beos/Makefile.in3
-rw-r--r--include/arch/beos/dso.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/dso/beos/Makefile.in b/dso/beos/Makefile.in
index f9a9b293e..266554101 100644
--- a/dso/beos/Makefile.in
+++ b/dso/beos/Makefile.in
@@ -4,7 +4,8 @@ CFLAGS=@CFLAGS@ @OPTIM@
LIBS=@LIBS@
LDFLAGS=@LDFLAGS@ $(LIBS)
INCDIR=../../include
-INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch
+DEFOSDIR=$(INCDIR)/arch/@DEFAULT_OSDIR@
+INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch -I$(DEFOSDIR)
MKDEP=../../helpers/mkdep.sh
LIB=libdso.a
diff --git a/include/arch/beos/dso.h b/include/arch/beos/dso.h
index 07da1aeab..476e71c8f 100644
--- a/include/arch/beos/dso.h
+++ b/include/arch/beos/dso.h
@@ -55,7 +55,7 @@
#ifndef DSO_H
#define DSO_H
-#include "unix/apr_private.h"
+#include "apr_private.h"
#include "apr_general.h"
#include "apr_pools.h"
#include "apr_errno.h"