2011-11-22 21:24:35 +00:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2011 Los Alamos National Security, LLC.
|
|
|
|
# All rights reserved.
|
2012-06-27 01:28:28 +00:00
|
|
|
#
|
2011-11-22 21:24:35 +00:00
|
|
|
# $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])
|
|
|
|
|
2013-01-27 23:25:10 +00:00
|
|
|
AC_ARG_WITH([orte],
|
|
|
|
AC_HELP_STRING([--with-orte],
|
|
|
|
[Use ORTE run-time environment (default: yes)]))
|
|
|
|
AS_IF([test "$with_orte" != "no"],
|
|
|
|
[$1],
|
|
|
|
[$2])
|
|
|
|
])
|