1
1

Define ORTE_ENABLE_EPOCH and ORTE_RESIL_ORTE.

This commit was SVN r25098.
Этот коммит содержится в:
George Bosilca 2011-08-27 00:16:21 +00:00
родитель a4245b8d63
Коммит 531b241304

Просмотреть файл

@ -420,8 +420,15 @@ AM_CONDITIONAL(WANT_FT_CR, test "$opal_want_ft_cr" = "1")
#
AC_ARG_ENABLE(resilient-orte,
[AC_HELP_STRING([--enable-resilient-orte], [Enable the resilient runtime code.])])
AS_IF( [test "$enable_resilient_orte" = "yes"], [result=1], [result=0] )
AM_CONDITIONAL(ORTE_RESIL_ORTE, [test "$enable_resilient_orte" = "yes"])
AC_DEFINE_UNQUOTED([ORTE_RESIL_ORTE], [$result],
[Compile a resilient version of Open MPI])
AM_CONDITIONAL(ORTE_ENABLE_EPOCH, [test "$enable_resilient_orte" = "yes"])
AC_DEFINE_UNQUOTED([ORTE_ENABLE_EPOCH], [$result],
[Support for epoch in the ORTE process name enabled or not])
#
# Do we want to install binaries?