diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-03-03 22:27:21 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-03-03 22:27:21 (GMT) |
commit | f56cb6a8f0e5f5314f3c439efc566e7815b88f9c (patch) | |
tree | 140ad4c3d2c00f0f6c103497291bb3110e6986d0 /acsite.m4 | |
parent | 6c7aa17753f16b6b7a0a43c724d4a659bf070a91 (diff) | |
download | hdf5-f56cb6a8f0e5f5314f3c439efc566e7815b88f9c.zip hdf5-f56cb6a8f0e5f5314f3c439efc566e7815b88f9c.tar.gz hdf5-f56cb6a8f0e5f5314f3c439efc566e7815b88f9c.tar.bz2 |
[svn-r26347] Moves large file and POSIX/GNU defines from AM_CPPFLAGS to H5_CPPFLAGS,
which is where the rest of the #defines reside.
The key difference is that AM_CPPFLAGS is exported to h5cc. These #defines
are not necessary to consume the HDF5 API and it's bad form to inflict
our build configuration on users. In particular, the GNU/POSIX defines
could easily conflict with a user's.
Fixes: HDFFV-9152
Tested on: h5committest
Diffstat (limited to 'acsite.m4')
-rw-r--r-- | acsite.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ done]) case $$3 in #( no | unknown) ;; *) AC_DEFINE_UNQUOTED([$1], [$$3], [$4]) - AM_CPPFLAGS="-D$1=$$3 $AM_CPPFLAGS";; + H5_CPPFLAGS="-D$1=$$3 $H5_CPPFLAGS";; esac rm -rf conftest*[]dnl ])# _AC_SYS_LARGEFILE_MACRO_VALUE |