Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 43479 invoked by uid 500); 9 Nov 2000 06:30:14 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 43467 invoked by uid 500); 9 Nov 2000 06:30:13 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 9 Nov 2000 06:30:13 -0000 Message-ID: <20001109063013.43463.qmail@locus.apache.org> From: rbb@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/lib/apr/misc/unix Makefile.in otherchild.c misc.h rbb 00/11/08 22:30:12 Modified: src/lib/apr/misc/unix Makefile.in otherchild.c Removed: src/lib/apr/misc/unix misc.h Log: Move all of the misc private header files to an arch directory under the include directory. All private header files for APR are being moved. This allows platforms that only implement some of the APR types to compile cleanly. Revision Changes Path 1.24 +54 -42 apache-2.0/src/lib/apr/misc/unix/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/misc/unix/Makefile.in,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- Makefile.in 2000/10/07 08:21:15 1.23 +++ Makefile.in 2000/11/09 06:30:11 1.24 @@ -9,11 +9,8 @@ CFLAGS=@CFLAGS@ @OPTIM@ LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ $(LIBS) -INCDIR1=../../include -INCDIR2=../../file_io/@OSDIR@ -INCDIR3=../../locks/@OSDIR@ -INCDIR4=../../threadproc/@OSDIR@ -INCLUDES=-I$(INCDIR1) -I$(INCDIR2) -I$(INCDIR3) -I$(INCDIR4) -I. +INCDIR=../../include +INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch/@OSDIR@ #LIB=libmisc.a @@ -52,40 +49,55 @@ && rm Makefile.new # DO NOT REMOVE -canonerr.o: canonerr.c misc.h ../../include/apr.h \ - ../../include/apr_private.h ../../include/apr_general.h \ - ../../include/apr_errno.h ../../include/apr_pools.h \ - ../../include/apr_thread_proc.h ../../include/apr_file_io.h \ - ../../include/apr_time.h ../../include/apr_getopt.h -errorcodes.o: errorcodes.c misc.h ../../include/apr.h \ - ../../include/apr_private.h ../../include/apr_general.h \ - ../../include/apr_errno.h ../../include/apr_pools.h \ - ../../include/apr_thread_proc.h ../../include/apr_file_io.h \ - ../../include/apr_time.h ../../include/apr_getopt.h \ - ../../include/apr_strings.h ../../include/apr_lib.h \ - ../../include/apr_tables.h ../../include/apr_dso.h -getopt.o: getopt.c misc.h ../../include/apr.h \ - ../../include/apr_private.h ../../include/apr_general.h \ - ../../include/apr_errno.h ../../include/apr_pools.h \ - ../../include/apr_thread_proc.h ../../include/apr_file_io.h \ - ../../include/apr_time.h ../../include/apr_getopt.h -otherchild.o: otherchild.c ../../include/apr.h misc.h \ - ../../include/apr_private.h ../../include/apr_general.h \ - ../../include/apr_errno.h ../../include/apr_pools.h \ - ../../include/apr_thread_proc.h ../../include/apr_file_io.h \ - ../../include/apr_time.h ../../include/apr_getopt.h \ - ../../threadproc/unix/threadproc.h ../../file_io/unix/fileio.h \ - ../../include/apr_lib.h ../../include/apr_tables.h -rand.o: rand.c misc.h ../../include/apr.h ../../include/apr_private.h \ - ../../include/apr_general.h ../../include/apr_errno.h \ - ../../include/apr_pools.h ../../include/apr_thread_proc.h \ - ../../include/apr_file_io.h ../../include/apr_time.h \ - ../../include/apr_getopt.h -start.o: start.c misc.h ../../include/apr.h \ - ../../include/apr_private.h ../../include/apr_general.h \ - ../../include/apr_errno.h ../../include/apr_pools.h \ - ../../include/apr_thread_proc.h ../../include/apr_file_io.h \ - ../../include/apr_time.h ../../include/apr_getopt.h \ - ../../locks/unix/locks.h ../../include/apr_lib.h \ - ../../include/apr_tables.h ../../include/apr_lock.h \ - ../../include/apr_strings.h +canonerr.o: canonerr.c $(INCDIR)/arch/unix/misc.h \ + $(INCDIR)/apr.h $(INCDIR)/apr_private.h \ + $(INCDIR)/apr_general.h $(INCDIR)/apr_errno.h \ + $(INCDIR)/apr_pools.h $(INCDIR)/apr_thread_proc.h \ + $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ + $(INCDIR)/apr_getopt.h +errorcodes.o: errorcodes.c $(INCDIR)/arch/unix/misc.h \ + $(INCDIR)/apr.h $(INCDIR)/apr_private.h \ + $(INCDIR)/apr_general.h $(INCDIR)/apr_errno.h \ + $(INCDIR)/apr_pools.h $(INCDIR)/apr_thread_proc.h \ + $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ + $(INCDIR)/apr_getopt.h $(INCDIR)/apr_strings.h \ + $(INCDIR)/apr_lib.h $(INCDIR)/apr_tables.h \ + $(INCDIR)/apr_dso.h +getopt.o: getopt.c $(INCDIR)/arch/unix/misc.h $(INCDIR)/apr.h \ + $(INCDIR)/apr_private.h $(INCDIR)/apr_general.h \ + $(INCDIR)/apr_errno.h $(INCDIR)/apr_pools.h \ + $(INCDIR)/apr_thread_proc.h $(INCDIR)/apr_file_io.h \ + $(INCDIR)/apr_time.h $(INCDIR)/apr_getopt.h +getuuid.o: getuuid.c $(INCDIR)/apr.h $(INCDIR)/apr_private.h \ + $(INCDIR)/apr_uuid.h $(INCDIR)/apr_errno.h \ + $(INCDIR)/apr_md5.h $(INCDIR)/apr_lib.h \ + $(INCDIR)/apr_pools.h $(INCDIR)/apr_thread_proc.h \ + $(INCDIR)/apr_file_io.h $(INCDIR)/apr_general.h \ + $(INCDIR)/apr_time.h $(INCDIR)/apr_tables.h \ + $(INCDIR)/apr_xlate.h +otherchild.o: otherchild.c $(INCDIR)/apr.h \ + $(INCDIR)/arch/unix/misc.h $(INCDIR)/apr_private.h \ + $(INCDIR)/apr_general.h $(INCDIR)/apr_errno.h \ + $(INCDIR)/apr_pools.h $(INCDIR)/apr_thread_proc.h \ + $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ + $(INCDIR)/apr_getopt.h $(INCDIR)/arch/unix/threadproc.h \ + $(INCDIR)/arch/unix/fileio.h $(INCDIR)/apr_tables.h \ + $(INCDIR)/apr_lib.h +rand.o: rand.c $(INCDIR)/arch/unix/misc.h $(INCDIR)/apr.h \ + $(INCDIR)/apr_private.h $(INCDIR)/apr_general.h \ + $(INCDIR)/apr_errno.h $(INCDIR)/apr_pools.h \ + $(INCDIR)/apr_thread_proc.h $(INCDIR)/apr_file_io.h \ + $(INCDIR)/apr_time.h $(INCDIR)/apr_getopt.h +start.o: start.c $(INCDIR)/arch/unix/misc.h $(INCDIR)/apr.h \ + $(INCDIR)/apr_private.h $(INCDIR)/apr_general.h \ + $(INCDIR)/apr_errno.h $(INCDIR)/apr_pools.h \ + $(INCDIR)/apr_thread_proc.h $(INCDIR)/apr_file_io.h \ + $(INCDIR)/apr_time.h $(INCDIR)/apr_getopt.h \ + $(INCDIR)/arch/unix/locks.h $(INCDIR)/apr_lib.h \ + $(INCDIR)/apr_tables.h $(INCDIR)/apr_lock.h \ + $(INCDIR)/apr_strings.h +uuid.o: uuid.c $(INCDIR)/apr.h $(INCDIR)/apr_uuid.h \ + $(INCDIR)/apr_errno.h $(INCDIR)/apr_lib.h \ + $(INCDIR)/apr_pools.h $(INCDIR)/apr_thread_proc.h \ + $(INCDIR)/apr_file_io.h $(INCDIR)/apr_general.h \ + $(INCDIR)/apr_time.h $(INCDIR)/apr_tables.h 1.17 +1 -1 apache-2.0/src/lib/apr/misc/unix/otherchild.c Index: otherchild.c =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/misc/unix/otherchild.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- otherchild.c 2000/10/16 06:04:47 1.16 +++ otherchild.c 2000/11/09 06:30:11 1.17 @@ -55,7 +55,7 @@ #include "apr.h" #include "misc.h" #include "threadproc.h" -#include "../../file_io/unix/fileio.h" +#include "fileio.h" #ifdef HAVE_TIME_H #include #endif