diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-08 04:29:01 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-08 04:29:01 +0000 |
commit | f1d59cb9e370f288335ba7d43a8c68e0be9d6d88 (patch) | |
tree | 82c65d4ed8c532522879b3aafde6833d7b9e71ff /tables | |
parent | 04f187c5f85e48259fe68626a6068d0b42402754 (diff) | |
download | libapr-f1d59cb9e370f288335ba7d43a8c68e0be9d6d88.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: http://svn.apache.org/repos/asf/apr/apr/trunk@60919 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tables')
-rw-r--r-- | tables/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tables/Makefile.in b/tables/Makefile.in index f09cf74f0..05aa28c76 100644 --- a/tables/Makefile.in +++ b/tables/Makefile.in @@ -5,8 +5,9 @@ RM=@RM@ 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 OBJS=apr_tables.o \ |