From 4e13d7afd521a9775f5888a960f273fbc695b4a1 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Mon, 19 Jul 2004 13:56:41 -0500 Subject: [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: --- configure | 14 ++++++++++++++ configure.in | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/configure b/configure index c69bf93..b26e75b 100755 --- a/configure +++ b/configure @@ -35140,9 +35140,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:" 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:" -- cgit v0.12