From 9a4ac501c1bd1f27bde1fc2acbc67bed74ff38ff Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 21 Oct 2016 14:11:46 -0500 Subject: Add defines missing on OSX --- tools/perform/pio_standalone.h | 5 +++++ tools/perform/sio_standalone.h | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/tools/perform/pio_standalone.h b/tools/perform/pio_standalone.h index df3bf54..f088c93 100644 --- a/tools/perform/pio_standalone.h +++ b/tools/perform/pio_standalone.h @@ -56,6 +56,11 @@ #define F_OK 0 /* Test for existence. */ #else /* H5_HAVE_WIN32_API */ #define HDaccess(F,M) access(F, M) +#ifndef F_OK +#define F_OK 00 +#define W_OK 02 +#define R_OK 04 +#endif #endif /* H5_HAVE_WIN32_API */ #define HDacos(X) acos(X) #ifdef H5_HAVE_ALARM diff --git a/tools/perform/sio_standalone.h b/tools/perform/sio_standalone.h index 63dc7b0..83dffa2 100644 --- a/tools/perform/sio_standalone.h +++ b/tools/perform/sio_standalone.h @@ -78,6 +78,11 @@ #define F_OK 0 /* Test for existence. */ #else /* H5_HAVE_WIN32_API */ #define HDaccess(F,M) access(F, M) +#ifndef F_OK +#define F_OK 00 +#define W_OK 02 +#define R_OK 04 +#endif #endif /* H5_HAVE_WIN32_API */ #define HDacos(X) acos(X) #ifdef H5_HAVE_ALARM -- cgit v0.12