f42783ae1a
runtime code goes through one of the rte, dpm, or pubsub frameworks. This commit was SVN r27934.
26 строки
674 B
Bash
26 строки
674 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2011 Los Alamos National Security, LLC.
|
|
# All rights reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_dpm_orte_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_ompi_dpm_orte_CONFIG],[
|
|
AC_CONFIG_FILES([ompi/mca/dpm/orte/Makefile])
|
|
|
|
AC_MSG_CHECKING([orte configuration args])
|
|
AC_ARG_WITH([orte],
|
|
AC_HELP_STRING([--with-orte],
|
|
[Use ORTE run-time environment (default: yes)]))
|
|
AS_IF([test "$with_orte" != "no"],
|
|
[$1],
|
|
[$2])
|
|
])
|