diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-04-01 16:47:16 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-04-01 16:47:16 (GMT) |
commit | 74c388e640c31559f0f3b562bcecf281090b0e9b (patch) | |
tree | 65fba7603d74365773cc0e7abd84f0ce22246485 /config | |
parent | ac32ce96a35d0d15bcda45779de43345da95959f (diff) | |
download | hdf5-74c388e640c31559f0f3b562bcecf281090b0e9b.zip hdf5-74c388e640c31559f0f3b562bcecf281090b0e9b.tar.gz hdf5-74c388e640c31559f0f3b562bcecf281090b0e9b.tar.bz2 |
Correct extra flags
Diffstat (limited to 'config')
-rw-r--r-- | config/cmake_ext_mod/ConfigureChecks.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/cmake_ext_mod/ConfigureChecks.cmake b/config/cmake_ext_mod/ConfigureChecks.cmake index 33d4d6e..93b977e 100644 --- a/config/cmake_ext_mod/ConfigureChecks.cmake +++ b/config/cmake_ext_mod/ConfigureChecks.cmake @@ -274,11 +274,11 @@ if (MINGW OR NOT WINDOWS) # systems. # POSIX feature information can be found in the gcc manual at: # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html - set (HDF_EXTRA_C_FLAGS -D_POSIX_C_SOURCE=200112L) + set (HDF_EXTRA_C_FLAGS -D_POSIX_C_SOURCE=200809L) # Need to add this so that O_DIRECT is visible for the direct # VFD on Linux systems. - set (HDF_EXTRA_C_FLAGS -D_GNU_SOURCE) + set (HDF_EXTRA_C_FLAGS ${HDF_EXTRA_C_FLAGS} -D_GNU_SOURCE) option (HDF_ENABLE_LARGE_FILE "Enable support for large (64-bit) files on Linux." ON) if (HDF_ENABLE_LARGE_FILE AND NOT DEFINED TEST_LFS_WORKS_RUN) |