
Explained in more detail in the following RFC: http://www.open-mpi.org/community/lists/devel/2010/03/7589.php This commit was SVN r22872.
20 строки
456 B
Bash
20 строки
456 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_errmgr_orcm_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_errmgr_orcm_CONFIG],[
|
|
# If we don't want FT, don't compile this component
|
|
AS_IF([test "$ompi_want_ft" = "1"],
|
|
[$1],
|
|
[$2])
|
|
])dnl
|