summaryrefslogtreecommitdiff
path: root/mmap/unix
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-12-08 04:29:01 +0000
committerRyan Bloom <rbb@apache.org>2000-12-08 04:29:01 +0000
commitaf4a9141cf3adb1dce3affc6ce478287a35c772c (patch)
tree82c65d4ed8c532522879b3aafde6833d7b9e71ff /mmap/unix
parent2d05f253431227070924495a2cd828bbc1a05f56 (diff)
downloadapr-af4a9141cf3adb1dce3affc6ce478287a35c772c.tar.gz
Move apr_private.h.in from the include directory to the arch/unix
directory. This removes all temptation to include apr_private.h from outside of APR, because it just isn't available. This also highlighted a bunch of holes in our header file setup. Basically, just directories that were never migrated to the curret setup. Submitted by: Will Rowe and Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60919 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'mmap/unix')
-rw-r--r--mmap/unix/Makefile.in3
-rw-r--r--mmap/unix/mmap.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/mmap/unix/Makefile.in b/mmap/unix/Makefile.in
index 5ac7b6b27..9fc7221ba 100644
--- a/mmap/unix/Makefile.in
+++ b/mmap/unix/Makefile.in
@@ -4,8 +4,9 @@ RANLIB=@RANLIB@
CFLAGS=@CFLAGS@ @OPTIM@
LIBS=@LIBS@
LDFLAGS=@LDFLAGS@ $(LIBS)
+DEFOSDIR=$(INCDIR)/arch/@DEFAULT_OSDIR@
INCDIR=../../include
-INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch
+INCLUDES=-I$(INCDIR) -I$(DEFOSDIR)
MKDEP=../../helpers/mkdep.sh
LIB=libmmap.a
diff --git a/mmap/unix/mmap.c b/mmap/unix/mmap.c
index 8b8b5440d..77c1d5ce8 100644
--- a/mmap/unix/mmap.c
+++ b/mmap/unix/mmap.c
@@ -57,7 +57,7 @@
#include "apr_general.h"
#include "apr_mmap.h"
#include "apr_errno.h"
-#include "unix/fileio.h"
+#include "fileio.h"
#include "apr_portable.h"
/* System headers required for the mmap library */