From 6ba9da3c0c15cfa2410282373c844eca4d2f3daa Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 11 Feb 2012 23:12:02 +0000 Subject: Fix open flags for Windows mkstempx() git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1634 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/pm.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'lib/pm.h') diff --git a/lib/pm.h b/lib/pm.h index 7870e1c7..21efea20 100644 --- a/lib/pm.h +++ b/lib/pm.h @@ -21,6 +21,7 @@ #include #include #include +#include #ifdef __cplusplus extern "C" { @@ -75,6 +76,26 @@ extern "C" { #define PURE_FN_ATTR #endif + +/* S_IRUSR is POSIX, defined in Some old BSD systems and Windows + systems have S_IREAD instead. Most Unix today (2011) has both. In 2011, + Android has S_IRUSR and not S_IREAD. + + Some Windows has _S_IREAD. + + We're ignoring S_IREAD now to see if anyone misses it. If there are still + users that need it, we can handle it here. +*/ +#if WIN32 + #define PM_S_IWUSR _S_IWRITE + #define PM_S_IRUSR _S_IREAD +#else + #define PM_S_IWUSR S_IWUSR + #define PM_S_IRUSR S_IRUSR +#endif + + + typedef struct { /* Coordinates of a pixel within an image. Row 0 is the top row. Column 0 is the left column. -- cgit 1.4.1