summaryrefslogtreecommitdiffstats
path: root/config/commence.in
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 /config/commence.in
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 'config/commence.in')
-rw-r--r--config/commence.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/config/commence.in b/config/commence.in
index 0b2559a..cd7e145 100644
--- a/config/commence.in
+++ b/config/commence.in
@@ -15,8 +15,12 @@
## Programs
SHELL=/bin/sh
CC=@CC@
-CFLAGS=@CFLAGS@
-CPPFLAGS=@CPPFLAGS@
+## H5_CPPFLAGS and H5_CFLAGS are used for extra flags used to build HDF5
+## (flags that don't need to be included in h5cc, for instance).
+CFLAGS=@CFLAGS@ @H5_CFLAGS@
+CPPFLAGS=@CPPFLAGS@ @H5_CPPFLAGS@
+H5_CFLAGS=@CFLAGS@
+H5_CPPFLAGS=@CPPFLAGS@
LDFLAGS=@LDFLAGS@
ROOT=@ROOT@
LIBS=@LIBS@