trawick 01/03/31 04:23:40
Modified: include/arch/win32 fileio.h
. CHANGES
Log:
Provide a fall-back definition of TRUSTEE_IS_WELL_KNOWN_GROUP so
that APR compiles with MSVC 5.0.
PR: 7489
Revision Changes Path
1.50 +3 -0 apr/include/arch/win32/fileio.h
Index: fileio.h
===================================================================
RCS file: /home/cvs/apr/include/arch/win32/fileio.h,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- fileio.h 2001/02/25 20:39:33 1.49
+++ fileio.h 2001/03/31 12:23:38 1.50
@@ -128,6 +128,9 @@
#ifndef FILE_FLAG_OPEN_REPARSE_POINT
#define FILE_FLAG_OPEN_REPARSE_POINT 0x00200000
#endif
+#ifndef TRUSTEE_IS_WELL_KNOWN_GROUP
+#define TRUSTEE_IS_WELL_KNOWN_GROUP 5
+#endif
/* Information bits available from the WIN32 FindFirstFile function */
#define APR_FINFO_WIN32_DIR (APR_FINFO_NAME | APR_FINFO_TYPE \
1.78 +3 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- CHANGES 2001/03/31 06:22:37 1.77
+++ CHANGES 2001/03/31 12:23:39 1.78
@@ -1,5 +1,8 @@
Changes with APR b1
+ *) Win32: Get APR to compile with MSVC 5.0 (a.k.a. VC97).
+ PR #7489 [Jeff Trawick]
+
*) First draft implementation of apr_filepath (get/set/parse_root
and merge) for Unix. [William Rowe]