From cd1bc7efa9ddf4679f75218381ad2ea8877ea549 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 21 Oct 2016 14:10:47 -0500 Subject: Add defines that are 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 be51a93..ee523ed 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 ea9dc26..6d6afe9 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