2005-07-13 05:07:31 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# OMPI_CHECK_MVAPI(prefix, [action-if-found], [action-if-not-found])
|
|
|
|
# --------------------------------------------------------
|
|
|
|
# check if MVAPI support can be found. sets prefix_{CPPFLAGS,
|
|
|
|
# LDFLAGS, LIBS} as needed and runs action-if-found if there is
|
|
|
|
# support, otherwise executes action-if-not-found
|
|
|
|
AC_DEFUN([OMPI_CHECK_MVAPI],[
|
|
|
|
AC_ARG_WITH([mvapi],
|
2005-07-14 01:34:11 +04:00
|
|
|
[AC_HELP_STRING([--with-btl-mvapi=MVAPI_DIR],
|
2005-07-13 05:07:31 +04:00
|
|
|
[Additional directory to search for MVAPI installation])])
|
|
|
|
AC_ARG_WITH([mvapi-libdir],
|
2005-07-14 01:34:11 +04:00
|
|
|
[AC_HELP_STRING([--with-btl-mvapi-libdir=IBLIBDIR],
|
2005-07-27 07:38:25 +04:00
|
|
|
[directory where the IB library can be found, if it is not in MVAPI_DIR/lib or MVAPI_DIR/lib64])])
|
2005-07-13 05:07:31 +04:00
|
|
|
|
2005-07-14 18:32:19 +04:00
|
|
|
AS_IF([test ! -z "$with_btl_mvapi" -a "$with_btl_mvapi" != "yes"],
|
|
|
|
[ompi_check_mvapi_dir="$with_btl_mvapi"])
|
|
|
|
AS_IF([test ! -z "$with_btl_mvapi_libdir" -a "$with_btl_mvapi_libdir" != "yes"],
|
|
|
|
[ompi_check_mvapi_libdir="$with_btl_mvapi_libdir"])
|
2005-07-13 05:07:31 +04:00
|
|
|
|
|
|
|
# check for pthreads and emit a warning that things might go south...
|
|
|
|
AS_IF([test "$HAVE_POSIX_THREADS" != "1"],
|
|
|
|
[AC_MSG_WARN([POSIX threads not enabled. May not be able to link with mvapi])])
|
|
|
|
|
2005-08-08 23:10:36 +04:00
|
|
|
|
|
|
|
ompi_check_mvapi$1_save_CFLAGS="$CFLAGS"
|
|
|
|
|
|
|
|
#ugly hack for topspin which stores include files in include/vapi
|
|
|
|
AS_IF([test -d "$ompi_check_mvapi_dir/include/vapi"],
|
|
|
|
[CPPFLAGS="$CPPFLAGS -I $ompi_check_mvapi_dir/include/vapi"
|
|
|
|
$1_CPPFLAGS="$$1_CPPFLAGS -I $ompi_check_mvapi_dir/include/vapi"])
|
|
|
|
|
|
|
|
#some mellanox vapi implemenations only need lvapi and lmosal
|
2005-07-13 05:07:31 +04:00
|
|
|
OMPI_CHECK_PACKAGE([$1],
|
2005-08-08 23:10:36 +04:00
|
|
|
[vapi.h],
|
|
|
|
[vapi],
|
|
|
|
[VAPI_open_hca],
|
|
|
|
[-lmosal],
|
|
|
|
[$ompi_check_mvapi_dir],
|
|
|
|
[$ompi_check_mvapi_libdir],
|
|
|
|
[ompi_check_mvapi_happy="yes"],
|
|
|
|
[ompi_check_mvapi_happy="no"])
|
|
|
|
|
|
|
|
#if needed use both lmpga and lmtl_common
|
|
|
|
AS_IF([test "$ompi_check_mvapi_happy" = "no"],
|
|
|
|
[OMPI_CHECK_PACKAGE([$1],
|
|
|
|
[vapi.h],
|
|
|
|
[vapi],
|
|
|
|
[VAPI_open_hca],
|
|
|
|
[-lmosal -lmpga -lmtl_common],
|
|
|
|
[$ompi_check_mvapi_dir],
|
|
|
|
[$ompi_check_mvapi_libdir],
|
|
|
|
[ompi_check_mvapi_happy="yes"],
|
|
|
|
[ompi_check_mvapi_happy="no"])])
|
|
|
|
|
|
|
|
|
|
|
|
CPPFLAGS="$ompi_check_vapi$1_save_CFLAGS"
|
2005-07-13 05:07:31 +04:00
|
|
|
|
|
|
|
AS_IF([test "$ompi_check_mvapi_happy" = "yes"],
|
|
|
|
[$2],
|
2005-07-14 18:32:19 +04:00
|
|
|
[AS_IF([test ! -z "$with_btl_mvapi" -a "$with_btl_mvapi" != "no"],
|
2005-07-13 05:07:31 +04:00
|
|
|
[AC_MSG_ERROR([MVAPI support requested but not found. Aborting])])
|
|
|
|
$3])
|
|
|
|
])
|
|
|
|
|