summaryrefslogtreecommitdiffstats
path: root/test/use_append_chunk.c
diff options
context:
space:
mode:
authorBaljak <baljci@hotmail.com>2022-01-08 04:29:25 (GMT)
committerGitHub <noreply@github.com>2022-01-08 04:29:25 (GMT)
commit8430e3d661cdcf91ed60626e87be936a6f15afe8 (patch)
treeb220767ba4419f12052958f097c78c88a0e23990 /test/use_append_chunk.c
parentbf27121b5d01939c819ac8b5b96101a16175c4de (diff)
downloadhdf5-8430e3d661cdcf91ed60626e87be936a6f15afe8.zip
hdf5-8430e3d661cdcf91ed60626e87be936a6f15afe8.tar.gz
hdf5-8430e3d661cdcf91ed60626e87be936a6f15afe8.tar.bz2
Fix compilation issues with Mingw (#1342)
Diffstat (limited to 'test/use_append_chunk.c')
-rw-r--r--test/use_append_chunk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/use_append_chunk.c b/test/use_append_chunk.c
index 107615a..185cb26 100644
--- a/test/use_append_chunk.c
+++ b/test/use_append_chunk.c
@@ -63,7 +63,7 @@
/* This test uses many POSIX things that are not available on
* Windows.
*/
-#ifdef H5_HAVE_UNISTD_H
+#if defined(H5_HAVE_FORK) && defined(H5_HAVE_WAITPID)
#include "use.h"
@@ -270,7 +270,7 @@ done:
return (ret_value);
}
-#else /* H5_HAVE_UNISTD_H */
+#else /* defined(H5_HAVE_FORK) && defined(H5_HAVE_WAITPID) */
int
main(void)
@@ -279,4 +279,4 @@ main(void)
return EXIT_SUCCESS;
} /* end main() */
-#endif /* H5_HAVE_UNISTD_H */
+#endif /* defined(H5_HAVE_FORK) && defined(H5_HAVE_WAITPID) */