bnicholes 02/03/05 11:53:05
Modified: include/arch/netware apr_private.h
include apr_file_info.h
Log:
Added NetWare to the WIN32 definition of types used in the apr_stat and
other file_io areas. Also removed the #define of sleep since it is now
included
in LibC
Revision Changes Path
1.8 +0 -4 apr/include/arch/netware/apr_private.h
Index: apr_private.h
===================================================================
RCS file: /home/cvs/apr/include/arch/netware/apr_private.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- apr_private.h 22 Feb 2002 15:51:17 -0000 1.7
+++ apr_private.h 5 Mar 2002 19:53:05 -0000 1.8
@@ -147,7 +147,6 @@
#endif
#define strcasecmp(s1, s2) stricmp(s1, s2)
-#define sleep(t) delay(t * 1000)
#define Sleep(t) delay(t)
#define lstat(a,b) stat(a,b)
@@ -179,9 +178,6 @@
and can be shared by the library. */
#undef malloc
#define malloc(x) library_malloc(gLibHandle,x)
-
-/* Changes that are waiting for an updated runtime library. */
-#define WAITING_FOR_UPDATE
#endif /*APR_PRIVATE_H*/
#endif /*NETWARE*/
1.30 +1 -1 apr/include/apr_file_info.h
Index: apr_file_info.h
===================================================================
RCS file: /home/cvs/apr/include/apr_file_info.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- apr_file_info.h 15 Feb 2002 21:15:44 -0000 1.29
+++ apr_file_info.h 5 Mar 2002 19:53:05 -0000 1.30
@@ -124,7 +124,7 @@
* @defvar apr_fileperms_t
*/
typedef apr_int32_t apr_fileperms_t;
-#ifdef WIN32
+#if (defined WIN32) || (defined NETWARE)
/**
* Structure for determining the inode of the file.
* @defvar apr_ino_t