diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2009-10-17 20:46:19 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2009-10-17 20:46:19 (GMT) |
commit | 1825d962dfe90fdb246ea5d97c124aa952c57369 (patch) | |
tree | 1198f7decd61856e580d4256b0d5116fd841a69a /configure.in | |
parent | 11155cf5c356dfc3bbc382f320c6c7fd294b3f22 (diff) | |
download | hdf5-1825d962dfe90fdb246ea5d97c124aa952c57369.zip hdf5-1825d962dfe90fdb246ea5d97c124aa952c57369.tar.gz hdf5-1825d962dfe90fdb246ea5d97c124aa952c57369.tar.bz2 |
[svn-r17665] Remove -D_POSIX_SOURCE from CPPFLAGS in h5cc. This flag breaks netcdf4 when compiling with h5cc and is not missed by hdf5-examples or hdfeos5.
Tested: jam.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 2ecc3d6..40bf03f 100644 --- a/configure.in +++ b/configure.in @@ -1284,7 +1284,7 @@ case "$host_cpu-$host_vendor-$host_os" in dnl Add POSIX support on Linux systems, so <features.h> defines dnl __USE_POSIX, which is required to get the prototype for fdopen dnl defined correctly in <stdio.h> - AM_CPPFLAGS="-D_POSIX_SOURCE $AM_CPPFLAGS" + H5_CPPFLAGS="-D_POSIX_SOURCE $H5_CPPFLAGS" dnl Also add BSD support on Linux systems, so <features.h> defines dnl __USE_BSD, which is required to get the prototype for strdup |