bjh 01/10/10 07:19:00
Modified: include/arch/os2 fileio.h
Log:
OS/2: Suppress use of mkstemp(), our own gettemp() is better.
Revision Changes Path
1.28 +6 -0 apr/include/arch/os2/fileio.h
Index: fileio.h
===================================================================
RCS file: /home/cvs/apr/include/arch/os2/fileio.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- fileio.h 2001/09/09 06:03:05 1.27
+++ fileio.h 2001/10/10 14:19:00 1.28
@@ -62,6 +62,12 @@
#include "apr_file_info.h"
#include "apr_errno.h"
+/* We have an implementation of mkstemp but it's not very multi-threading
+ * friendly & is part of the POSIX emulation rather than native so don't
+ * use it.
+ */
+#undef HAVE_MKSTEMP
+
#define APR_FILE_BUFSIZE 4096
struct apr_file_t {