2006-01-16 06:01:12 +03:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. 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.
|
2009-03-13 04:01:00 +03:00
|
|
|
# Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
|
2010-09-18 03:04:06 +04:00
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2006-01-16 06:01:12 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# MCA_btl_udapl_CONFIG([action-if-can-compile],
|
|
|
|
# [action-if-cant-compile])
|
|
|
|
# ------------------------------------------------
|
2010-09-18 03:04:06 +04:00
|
|
|
AC_DEFUN([MCA_ompi_btl_udapl_CONFIG],[
|
|
|
|
AC_CONFIG_FILES([ompi/mca/btl/udapl/Makefile])
|
|
|
|
|
2006-01-16 06:01:12 +03:00
|
|
|
OMPI_CHECK_UDAPL([btl_udapl],
|
|
|
|
[btl_udapl_happy="yes"],
|
|
|
|
[btl_udapl_happy="no"])
|
|
|
|
|
|
|
|
AS_IF([test "$btl_udapl_happy" = "yes"],
|
|
|
|
[btl_udapl_WRAPPER_EXTRA_LDFLAGS="$btl_udapl_LDFLAGS"
|
|
|
|
btl_udapl_WRAPPER_EXTRA_LIBS="$btl_udapl_LIBS"
|
|
|
|
$1],
|
|
|
|
[$2])
|
|
|
|
|
|
|
|
# Borrowed from MVAPI BTL - a data structure in the uDAPL headers
|
|
|
|
# is not fully ISO C. Remove -pedantic to silence a warning.
|
|
|
|
btl_udapl_CFLAGS="`echo $CFLAGS | sed 's/-pedantic//g'`"
|
|
|
|
AS_IF([test "$btl_udapl_CFLAGS" != "$CFLAGS" -a "$btl_udapl_happy" = "yes"],
|
|
|
|
[AC_MSG_WARN([Removed -pedantic from CFLAGS for
|
2006-01-25 05:21:34 +03:00
|
|
|
uDAPL component because the uDAPL headers are not fully ISO C])])
|
2006-01-16 06:01:12 +03:00
|
|
|
|
2009-03-13 04:01:00 +03:00
|
|
|
# Test for uDAPL relaxed ordered specific symbols
|
|
|
|
AS_IF([test "$btl_udapl_happy" = "yes"],
|
2009-03-16 05:24:01 +03:00
|
|
|
[AC_MSG_CHECKING(for uDAPL DAT_MEM_TYPE_SO_VIRTUAL)
|
2009-03-13 04:01:00 +03:00
|
|
|
AC_TRY_COMPILE([#include <dat/udat.h>],
|
2009-03-16 05:24:01 +03:00
|
|
|
[DAT_MEM_TYPE dmt = DAT_MEM_TYPE_SO_VIRTUAL;],
|
2009-03-13 04:01:00 +03:00
|
|
|
[AC_MSG_RESULT(yes)
|
|
|
|
btl_udapl_ro_aware=1],
|
|
|
|
[AC_MSG_RESULT(no)
|
|
|
|
btl_udapl_ro_aware=0])
|
2009-03-16 05:24:01 +03:00
|
|
|
AC_DEFINE_UNQUOTED([HAVE_DAT_MEM_TYPE_SO_VIRTUAL],
|
2009-03-13 04:01:00 +03:00
|
|
|
[$btl_udapl_ro_aware],
|
|
|
|
[uDAPL DAT_MEM_TYPE_SO_VIRTUAL check])])
|
|
|
|
|
2006-01-16 06:01:12 +03:00
|
|
|
# substitute in the things needed to build udapl
|
|
|
|
AC_SUBST([btl_udapl_CFLAGS])
|
|
|
|
AC_SUBST([btl_udapl_CPPFLAGS])
|
|
|
|
AC_SUBST([btl_udapl_LDFLAGS])
|
|
|
|
AC_SUBST([btl_udapl_LIBS])
|
|
|
|
])dnl
|