diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-01-20 05:31:41 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-01-20 05:31:41 (GMT) |
commit | 7403cba552ac3c64bb3601560a72f449050c1ff9 (patch) | |
tree | a35f6335576322bffb311faa758af321ce49d56e | |
parent | 66a94df13b3801547523f1ea90bc84fe2ee6824b (diff) | |
parent | 2f606a7c62c67d09835f004bad11fff6a76fc918 (diff) | |
download | hdf5-7403cba552ac3c64bb3601560a72f449050c1ff9.zip hdf5-7403cba552ac3c64bb3601560a72f449050c1ff9.tar.gz hdf5-7403cba552ac3c64bb3601560a72f449050c1ff9.tar.bz2 |
Merge pull request #2285 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop_minor to develop
* commit '2f606a7c62c67d09835f004bad11fff6a76fc918':
PATH_MAX fix in efc test for Windows.
-rw-r--r-- | test/efc.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -32,6 +32,11 @@ const char *FILENAME[] = { NULL }; +/* Windows doesn't have PATH_MAX */ +#ifndef PATH_MAX +#define PATH_MAX 4096 +#endif /* !PATH_MAX */ + /* Global patched filename buffer */ #define N_FILENAMES 6 static char *filename[N_FILENAMES]; |