diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-07-19 18:56:41 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-07-19 18:56:41 (GMT) |
commit | 4e13d7afd521a9775f5888a960f273fbc695b4a1 (patch) | |
tree | 78c06cea69ebbbd9a0044e98f6a45ec0426deec3 /configure.in | |
parent | c97fddc786356a1832e6cb3ac3f28b781d01584d (diff) | |
download | hdf5-4e13d7afd521a9775f5888a960f273fbc695b4a1.zip hdf5-4e13d7afd521a9775f5888a960f273fbc695b4a1.tar.gz hdf5-4e13d7afd521a9775f5888a960f273fbc695b4a1.tar.bz2 |
[svn-r8896] Purpose:
Feature
Description:
Showed the fortran compiler and FFLAGS and CXX compiler and CXXFLAGS
when the corresponding language API is enabled.
Platforms tested:
No h5committest since it is just a simple shell script change.
Tested in Eirene.
Misc. update:
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 9a085db..2fb57d7 100644 --- a/configure.in +++ b/configure.in @@ -2994,9 +2994,23 @@ PRINT "Languages:" PRINT_N " C++" IF_YES_NO "$HDF_CXX" +if test X$HDF_CXX = Xyes; then + PRINT_N " C++ Compiler" + PRINT "$CXX" + + PRINT_N " CXXFLAGS" + PRINT "$CXXFLAGS" +fi PRINT_N " Fortran" IF_YES_NO "$HDF_FORTRAN" +if test X$HDF_FORTRAN = Xyes; then + PRINT_N " Fortran Compiler" + PRINT "$F9X" + + PRINT_N " FFLAGS" + PRINT "$FFLAGS" +fi PRINT "Features:" |