
Modify the orte configure options to specify --enable-multicast such that it directs components to build or not instead of littering the code base with #if's. Remove those #if's where they used to occur. Add a new grpcomm "mcast" module to support multicast operations. Still some work required to properly perform daemon collectives for comm_spawn operations. New module only builds when --enable-multicast is provided, and when specifically selected. This commit was SVN r22709.
19 строки
483 B
Bash
19 строки
483 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
|