1
1

Rather than setting up the direct call stuff in ompi_mca (which requires

modifying ompi_mca for every interface that is direct called), do it in
the framework's .m4 file.

This commit was SVN r28031.
Этот коммит содержится в:
Brian Barrett 2013-02-04 23:26:42 +00:00
родитель 6dd4a8cdf9
Коммит d80218996f
3 изменённых файлов: 36 добавлений и 4 удалений

Просмотреть файл

@ -229,10 +229,6 @@ AC_DEFUN([OMPI_MCA],[
fi
MCA_CONFIGURE_PROJECT(mca_project)])
# BWB - fix me... need to automate this somehow
MCA_SETUP_DIRECT_CALL(ompi, pml)
MCA_SETUP_DIRECT_CALL(ompi, mtl)
AC_SUBST(MCA_PROJECT_SUBDIRS)
m4_undefine([mca_component_configure_active])

18
ompi/mca/mtl/configure.m4 Обычный файл
Просмотреть файл

@ -0,0 +1,18 @@
# -*- shell-script -*-
#
# Copyright (c) 2013 Sandia National Laboratories. All rights reserved.
#
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
AC_DEFUN([MCA_ompi_mtl_CONFIG],[
# configure all the components
MCA_CONFIGURE_FRAMEWORK($1, $2, 1)
# this is a direct callable component, so set that up.
MCA_SETUP_DIRECT_CALL($1, $2)
])

18
ompi/mca/pml/configure.m4 Обычный файл
Просмотреть файл

@ -0,0 +1,18 @@
# -*- shell-script -*-
#
# Copyright (c) 2013 Sandia National Laboratories. All rights reserved.
#
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
AC_DEFUN([MCA_ompi_pml_CONFIG],[
# configure all the components
MCA_CONFIGURE_FRAMEWORK($1, $2, 1)
# this is a direct callable component, so set that up.
MCA_SETUP_DIRECT_CALL($1, $2)
])