trawick 2003/10/15 06:34:26
Modified: include apr.h.in
include/arch/unix apr_arch_networkio.h
Log:
need <sys/ioctl.h> for SIOCATMARK on at least AIX and z/OS (OS/390 (MVS))
Revision Changes Path
1.129 +1 -0 apr/include/apr.h.in
Index: apr.h.in
===================================================================
RCS file: /home/cvs/apr/include/apr.h.in,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- apr.h.in 14 Oct 2003 23:47:29 -0000 1.128
+++ apr.h.in 15 Oct 2003 13:34:25 -0000 1.129
@@ -127,6 +127,7 @@
#define APR_HAVE_STDLIB_H @stdlibh@
#define APR_HAVE_STRING_H @stringh@
#define APR_HAVE_STRINGS_H @stringsh@
+#define APR_HAVE_SYS_IOCTL_H @sys_ioctlh@
#define APR_HAVE_SYS_SENDFILE_H @sys_sendfileh@
#define APR_HAVE_SYS_SIGNAL_H @sys_signalh@
#define APR_HAVE_SYS_SOCKET_H @sys_socketh@
1.4 +3 -0 apr/include/arch/unix/apr_arch_networkio.h
Index: apr_arch_networkio.h
===================================================================
RCS file: /home/cvs/apr/include/arch/unix/apr_arch_networkio.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- apr_arch_networkio.h 14 Oct 2003 23:47:29 -0000 1.3
+++ apr_arch_networkio.h 15 Oct 2003 13:34:26 -0000 1.4
@@ -114,6 +114,9 @@
#if APR_HAVE_SYS_SENDFILE_H
#include <sys/sendfile.h>
#endif
+#if APR_HAVE_SYS_IOCTL_H
+#include <sys/ioctl.h>
+#endif
/* End System Headers */
#ifndef HAVE_POLLIN