2011-11-22 21:24:35 +00:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2011 Los Alamos National Security, LLC.
|
|
|
|
# All rights reserved.
|
2012-06-26 21:42:16 +00:00
|
|
|
# Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
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])
|
|
|
|
|
2012-06-26 21:42:16 +00:00
|
|
|
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],
|
2011-11-22 21:24:35 +00:00
|
|
|
[$2])
|
|
|
|
])dnl
|