b43d621f30
This commit was SVN r22821.
19 строки
482 B
Bash
19 строки
482 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_grpcomm_mcast_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_grpcomm_mcast_CONFIG], [
|
|
# if we don't want reliable multicast, don't compile
|
|
# this component
|
|
AS_IF([test "$orte_want_multicast" = "1"],
|
|
[$1], [$2])
|
|
])dnl
|