[MOAB-dev] r3041 - MOAB/trunk

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Tue Jul 21 15:33:39 CDT 2009


Author: kraftche
Date: 2009-07-21 15:33:38 -0500 (Tue, 21 Jul 2009)
New Revision: 3041

Modified:
   MOAB/trunk/configure.ac
Log:
if not configuring Fortran support, then don't print Fortran stuff at the end

Modified: MOAB/trunk/configure.ac
===================================================================
--- MOAB/trunk/configure.ac	2009-07-21 20:25:42 UTC (rev 3040)
+++ MOAB/trunk/configure.ac	2009-07-21 20:33:38 UTC (rev 3041)
@@ -68,7 +68,7 @@
 SNL_TEMPLATE_FUNC_SPECIALIZATION
 DEFINES="$DEFINES $TEMPLATE_SPECIALIZATION $TEMPLATE_FUNC_SPECIALIZATION"
 
-if test "x" != "x$FC"; then
+if test "xno" != "x$CONFIGURE_FORTRAN"; then
   AC_FC_WRAPPERS
 fi
 
@@ -1083,9 +1083,10 @@
 
 AC_MSG_RESULT([C:   $CC $CFLAGS $CPPFLAGS])
 AC_MSG_RESULT([C++: $CXX $CXXFLAGS $CPPFLAGS])
-AC_MSG_RESULT([Fortran: $FC $FCFLAGS])
+if test "xno" != "x$CONFIGURE_FORTRAN"; then
+  AC_MSG_RESULT([Fortran: $FC $FCFLAGS])
+fi
 
-
 if test "x$GRAPHVIZ_MISSING" = "xyes"; then
   AC_MSG_WARN([Could not find GraphViz library.  Build will FAIL!!! Try \"--with-graphviz=DIR\"])
 fi



More information about the moab-dev mailing list