2011-12-03 02:11:23 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2011-12-03 02:11:23 +04:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2011-12-03 02:11:23 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# MCA_ompi_fcoll_CONFIG(project_name, framework_name)
|
|
|
|
# -------------------------------------------
|
2015-06-24 06:59:57 +03:00
|
|
|
AC_DEFUN([MCA_ompi_fcoll_CONFIG],
|
2011-12-03 02:11:23 +04:00
|
|
|
[
|
|
|
|
# An AC-ARG-ENABLE for mpi-io was set in ompi/mca/io/configure.m4.
|
|
|
|
# If it's no, we shouldn't bother building anything in fcoll.
|
|
|
|
AS_IF([test "$enable_mpi_io" != "no"],
|
|
|
|
[want_mpi_io=1],
|
|
|
|
[want_mpi_io=0])
|
|
|
|
MCA_CONFIGURE_FRAMEWORK([$1], [$2], [$want_mpi_io])
|
|
|
|
])
|