
This is a runtime interposition project that sits between the OMPI and ORTE layers in Open MPI. The project is described on the wiki: https://svn.open-mpi.org/trac/ompi/wiki/Runtime_Interposition And on this email thread: http://www.open-mpi.org/community/lists/devel/2012/06/11109.php This commit was SVN r26670.
30 строки
887 B
Bash
30 строки
887 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2011 Los Alamos National Security, LLC.
|
|
# All rights reserved.
|
|
# Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_pubsub_orte_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_ompi_pubsub_orte_CONFIG],[
|
|
AC_CONFIG_FILES([ompi/mca/pubsub/orte/Makefile])
|
|
|
|
ORCA_CHECK_ORTE([pubsub_orte],
|
|
[pubsub_orte_happy="yes"],
|
|
[pubsub_orte_happy="no"])
|
|
|
|
AS_IF([test "$pubsub_orte_happy" = "yes" -a "$orca_without_orte_full_support" = 0],
|
|
[AC_SUBST([pubsub_orte_CFLAGS])
|
|
AC_SUBST([pubsub_orte_CPPFLAGS])
|
|
AC_SUBST([pubsub_orte_LDFLAGS])
|
|
AC_SUBST([pubsub_orte_LIBS])
|
|
$1],
|
|
[$2])
|
|
])dnl
|