summaryrefslogtreecommitdiffstats
path: root/c++/config
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-09-16 20:23:06 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-09-16 20:23:06 (GMT)
commit99a488c76c84bd3c60b7c37dfe448e79b846f4cf (patch)
treea4740bc8fe757683d7a3f8f6105a56577dca8b7c /c++/config
parentba34b659b1a70ba8f891ee641f3db67f14e0e5a4 (diff)
downloadhdf5-99a488c76c84bd3c60b7c37dfe448e79b846f4cf.zip
hdf5-99a488c76c84bd3c60b7c37dfe448e79b846f4cf.tar.gz
hdf5-99a488c76c84bd3c60b7c37dfe448e79b846f4cf.tar.bz2
[svn-r11419] Purpose:
Feature Description: Created H5_CFLAGS, H5_CPPFLAGS, H5_CXXFLAGS, and H5_FFLAGS variables. These hold flags that are used to build hdf5, but won't be passed on to h5cc (or h5fc, or h5c++). Currently there are no flags included; this is just the framework for such flags. Platforms tested: mir, modi4, sleipnir Misc. update:
Diffstat (limited to 'c++/config')
-rw-r--r--c++/config/commence.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/c++/config/commence.in b/c++/config/commence.in
index 381f014..17e5c65 100644
--- a/c++/config/commence.in
+++ b/c++/config/commence.in
@@ -15,9 +15,12 @@
## Programs
SHELL=/bin/sh
CXX=@CXX@
-CXXFLAGS=@CXXFLAGS@
-CFLAGS=@CFLAGS@
-CPPFLAGS=@CPPFLAGS@
+## H5_CPPFLAGS, H5_CFLAGS, and H5_CXXFLAGS are used for extra flags
+## used to build HDF5 (flags that don't need to be included in h5cc,
+## for instance).
+CXXFLAGS=@CXXFLAGS@ @H5_CXXFLAGS@
+CFLAGS=@CFLAGS@ @H5_CFLAGS@
+CPPFLAGS=@CPPFLAGS@ @H5_CPPFLAGS@
LDFLAGS=@LDFLAGS@
ROOT=@ROOT@
LIBS=@LIBS@