
MPI_INIT and start of MPI_FINALIZE. * Clean up MPI Extensions build system to acknowledge that OMPI's the only project with extensions, as well as remove some build artifacts necessary for more general components. This commit was SVN r23616.
20 строки
499 B
Bash
20 строки
499 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2004-2010 The Trustees of Indiana University.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# OMPI_MPIEXT_cr_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([OMPI_MPIEXT_cr_CONFIG],[
|
|
# If we don't want FT, don't compile this component
|
|
AS_IF([test "$opal_want_ft_cr" = "1"],
|
|
[$1],
|
|
[$2])
|
|
])dnl
|