2013-08-30 20:54:55 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2013 Sandia National Laboratories. All rights reserved.
|
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2013-08-30 20:54:55 +04:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2013-08-30 20:54:55 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# MCA_ompi_pml_ob1_POST_CONFIG(will_build)
|
|
|
|
# ----------------------------------------
|
|
|
|
# The OB1 PML requires a BML endpoint tag to compile, so require it.
|
|
|
|
# Require in POST_CONFIG instead of CONFIG so that we only require it
|
|
|
|
# if we're not disabled.
|
|
|
|
AC_DEFUN([MCA_ompi_pml_ob1_POST_CONFIG], [
|
|
|
|
AS_IF([test "$1" = "1"], [OMPI_REQUIRE_ENDPOINT_TAG([BML])])
|
|
|
|
])dnl
|
|
|
|
|
2015-06-24 06:59:57 +03:00
|
|
|
# MCA_ompi_pml_ob1_CONFIG(action-if-can-compile,
|
2013-08-30 20:54:55 +04:00
|
|
|
# [action-if-cant-compile])
|
|
|
|
# ------------------------------------------------
|
|
|
|
# We can always build, unless we were explicitly disabled.
|
|
|
|
AC_DEFUN([MCA_ompi_pml_ob1_CONFIG],[
|
|
|
|
AC_CONFIG_FILES([ompi/mca/pml/ob1/Makefile])
|
|
|
|
[$1]
|
|
|
|
])dnl
|