mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
PATH_MAX fix in efc test for Windows.
This commit is contained in:
parent
66a94df13b
commit
2f606a7c62
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user