gregames 2002/07/01 07:04:58
Modified: . configure.in
include apr.h.in
file_io/unix dir.c fileacc.c filestat.c pipe.c
Log:
back out the changes to #include sys/stat.h . This is unneccessary as long
as HAVE_SYS_STAT_H is defined correctly in apr_private.h
Revision Changes Path
1.458 +0 -1 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.457
retrieving revision 1.458
diff -u -r1.457 -r1.458
--- configure.in 27 Jun 2002 17:47:30 -0000 1.457
+++ configure.in 1 Jul 2002 14:04:58 -0000 1.458
@@ -933,7 +933,6 @@
sys/sendfile.h \
sys/signal.h \
sys/socket.h \
- sys/stat.h \
sys/syslimits.h \
sys/time.h \
sys/types.h \
1.110 +0 -1 apr/include/apr.h.in
Index: apr.h.in
===================================================================
RCS file: /home/cvs/apr/include/apr.h.in,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- apr.h.in 27 Jun 2002 17:47:30 -0000 1.109
+++ apr.h.in 1 Jul 2002 14:04:58 -0000 1.110
@@ -56,7 +56,6 @@
#define APR_HAVE_SYS_SENDFILE_H @sys_sendfileh@
#define APR_HAVE_SYS_SIGNAL_H @sys_signalh@
#define APR_HAVE_SYS_SOCKET_H @sys_socketh@
-#define APR_HAVE_SYS_STAT_H @sys_stath@
#define APR_HAVE_SYS_SYSLIMITS_H @sys_syslimitsh@
#define APR_HAVE_SYS_TIME_H @sys_timeh@
#define APR_HAVE_SYS_TYPES_H @sys_typesh@
1.64 +0 -3 apr/file_io/unix/dir.c
Index: dir.c
===================================================================
RCS file: /home/cvs/apr/file_io/unix/dir.c,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- dir.c 27 Jun 2002 17:47:30 -0000 1.63
+++ dir.c 1 Jul 2002 14:04:58 -0000 1.64
@@ -58,9 +58,6 @@
#if APR_HAVE_SYS_SYSLIMITS_H
#include <sys/syslimits.h>
#endif
-#if APR_HAVE_SYS_STAT_H
-#include <sys/stat.h>
-#endif
#if APR_HAVE_LIMITS_H
#include <limits.h>
#endif
1.53 +0 -3 apr/file_io/unix/fileacc.c
Index: fileacc.c
===================================================================
RCS file: /home/cvs/apr/file_io/unix/fileacc.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- fileacc.c 27 Jun 2002 17:47:30 -0000 1.52
+++ fileacc.c 1 Jul 2002 14:04:58 -0000 1.53
@@ -54,9 +54,6 @@
#include "apr_strings.h"
#include "fileio.h"
-#if APR_HAVE_SYS_STAT_H
-#include <sys/stat.h>
-#endif
/* A file to put ALL of the accessor functions for apr_file_t types. */
1.56 +0 -3 apr/file_io/unix/filestat.c
Index: filestat.c
===================================================================
RCS file: /home/cvs/apr/file_io/unix/filestat.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- filestat.c 27 Jun 2002 17:47:30 -0000 1.55
+++ filestat.c 1 Jul 2002 14:04:58 -0000 1.56
@@ -57,9 +57,6 @@
#include "apr_general.h"
#include "apr_strings.h"
#include "apr_errno.h"
-#if APR_HAVE_SYS_STAT_H
-#include <sys/stat.h>
-#endif
static apr_filetype_e filetype_from_mode(mode_t mode)
{
1.56 +0 -3 apr/file_io/unix/pipe.c
Index: pipe.c
===================================================================
RCS file: /home/cvs/apr/file_io/unix/pipe.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- pipe.c 27 Jun 2002 18:25:24 -0000 1.55
+++ pipe.c 1 Jul 2002 14:04:58 -0000 1.56
@@ -54,9 +54,6 @@
#include "fileio.h"
#include "apr_strings.h"
-#if APR_HAVE_SYS_STAT_H
-#include <sys/stat.h>
-#endif
/* Figure out how to get pipe block/nonblock on BeOS...
* Basically, BONE7 changed things again so that ioctl didn't work,