[MOAB-dev] r5300 - MOAB/trunk/config
tautges at mcs.anl.gov
tautges at mcs.anl.gov
Tue Jan 10 04:21:26 CST 2012
Author: tautges
Date: 2012-01-10 04:21:25 -0600 (Tue, 10 Jan 2012)
New Revision: 5300
Modified:
MOAB/trunk/config/damsel.m4
Log:
Missed one of the checks in making Damsel support default to off.
Modified: MOAB/trunk/config/damsel.m4
===================================================================
--- MOAB/trunk/config/damsel.m4 2012-01-10 10:14:23 UTC (rev 5299)
+++ MOAB/trunk/config/damsel.m4 2012-01-10 10:21:25 UTC (rev 5300)
@@ -22,11 +22,11 @@
AC_MSG_RESULT([no])
fi
- # if DAMSEL support is not disabled
+ # if DAMSEL support is enabled
AC_MSG_CHECKING([if DAMSEL support available])
AC_MSG_RESULT([])
HAVE_DAMSEL=no
-if test "xno" != "x$DAMSEL_ARG"; then
+if test "x" != "x$DAMSEL_ARG" && test "xno" != "x$DAMSEL_ARG"; then
HAVE_DAMSEL=yes
# if a path is specified, update LIBS and INCLUDES accordingly
More information about the moab-dev
mailing list