summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tables/Makefile.in5
-rw-r--r--tables/apr_tables.c2
2 files changed, 3 insertions, 4 deletions
diff --git a/tables/Makefile.in b/tables/Makefile.in
index 53d47af9f..bf6cb862b 100644
--- a/tables/Makefile.in
+++ b/tables/Makefile.in
@@ -11,8 +11,7 @@ CFLAGS=@CFLAGS@ @OPTIM@
LIBS=@LIBS@
LDFLAGS=@LDFLAGS@ $(LIBS)
INCDIR=../include
-INCDIR1=../misc/@OSDIR@
-INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I../misc/unix
+INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch
OBJS=apr_tables.o \
apr_hash.o
@@ -58,4 +57,4 @@ apr_tables.o: apr_tables.c $(INCDIR)/apr_private.h \
$(INCDIR)/apr_pools.h $(INCDIR)/apr_thread_proc.h \
$(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \
$(INCDIR)/apr_tables.h $(INCDIR)/apr_strings.h $(INCDIR)/apr_lib.h \
- ../misc/unix/misc.h $(INCDIR)/apr_getopt.h
+ $(INCDIR)/arch/unix/misc.h $(INCDIR)/apr_getopt.h
diff --git a/tables/apr_tables.c b/tables/apr_tables.c
index abfd4b395..d9613d4fc 100644
--- a/tables/apr_tables.c
+++ b/tables/apr_tables.c
@@ -66,7 +66,7 @@
#include "apr_tables.h"
#include "apr_strings.h"
#include "apr_lib.h"
-#include "misc.h"
+#include "unix/misc.h"
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif