1
1

ORTE configure options belong in orte/config, not opal.

This commit was SVN r25100.
Этот коммит содержится в:
Ralph Castain 2011-08-27 14:23:49 +00:00
родитель f542ecd578
Коммит 56ebfa23cc
2 изменённых файлов: 16 добавлений и 15 удалений

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

@ -415,21 +415,6 @@ AC_DEFINE_UNQUOTED([OPAL_ENABLE_FT_CR], [$opal_want_ft_cr],
AM_CONDITIONAL(WANT_FT, test "$opal_want_ft" = "1")
AM_CONDITIONAL(WANT_FT_CR, test "$opal_want_ft_cr" = "1")
#
# Compile in resilient runtime code
#
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?
#

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

@ -132,4 +132,20 @@ AC_DEFINE_UNQUOTED([ORTE_ENABLE_HEARTBEAT],
[$orte_want_heartbeats],
[Whether we want daemon heartbeat monitoring enabled])
#
# Compile in resilient runtime code
#
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])
])dnl