2010-02-25 01:11:29 +00:00
|
|
|
# -*- 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])
|
|
|
|
# -----------------------------------------------------------
|
2010-03-12 20:08:22 +00:00
|
|
|
AC_DEFUN([MCA_grpcomm_mcast_CONFIG], [
|
2010-02-25 01:11:29 +00:00
|
|
|
# if we don't want reliable multicast, don't compile
|
|
|
|
# this component
|
|
|
|
AS_IF([test "$orte_want_multicast" = "1"],
|
|
|
|
[$1], [$2])
|
|
|
|
])dnl
|