From 85834b22e6fa39763591bdaa3bd022623bb57dd7 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Fri, 6 Jun 2008 00:00:37 +0000 Subject: [PATCH] Change the default to not enable heterogeneous builds; we detect at run-time if a heterogeneous job was started and will barf appropriately if OMPI was not compiled with heterogeneous support This commit was SVN r18601. --- config/ompi_configure_options.m4 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/ompi_configure_options.m4 b/config/ompi_configure_options.m4 index accdd6b179..556e040d71 100644 --- a/config/ompi_configure_options.m4 +++ b/config/ompi_configure_options.m4 @@ -496,13 +496,13 @@ AC_MSG_CHECKING([if heterogeneous support should be enabled]) AC_ARG_ENABLE([heterogeneous], [AC_HELP_STRING([--enable-heterogeneous], [Enable features required for heterogeneous - platform support (default: enabled)])]) -if test "$enable_heterogeneous" = "no" ; then - AC_MSG_RESULT([no]) - ompi_want_heterogeneous=0 -else + platform support (default: disabled)])]) +if test "$enable_heterogeneous" = "yes" ; then AC_MSG_RESULT([yes]) ompi_want_heterogeneous=1 +else + AC_MSG_RESULT([no]) + ompi_want_heterogeneous=0 fi AC_DEFINE_UNQUOTED([OMPI_ENABLE_HETEROGENEOUS_SUPPORT], [$ompi_want_heterogeneous],