2006-01-25 02:22:50 +00:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2006-01-25 04:08:08 +00:00
|
|
|
# Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana
|
2006-01-25 02:22:50 +00:00
|
|
|
# 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.
|
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# MCA_mpool_udapl_CONFIG([action-if-can-compile],
|
|
|
|
# [action-if-cant-compile])
|
|
|
|
# ------------------------------------------------
|
|
|
|
AC_DEFUN([MCA_mpool_udapl_CONFIG],[
|
|
|
|
OMPI_CHECK_UDAPL([mpool_udapl],
|
|
|
|
[mpool_udapl_happy="yes"],
|
|
|
|
[mpool_udapl_happy="no"])
|
|
|
|
|
|
|
|
AS_IF([test "$mpool_udapl_happy" = "yes"],
|
|
|
|
[mpool_udapl_WRAPPER_EXTRA_LDFLAGS="$mpool_udapl_LDFLAGS"
|
|
|
|
mpool_udapl_WRAPPER_EXTRA_LIBS="$mpool_udapl_LIBS"
|
|
|
|
$1],
|
|
|
|
[$2])
|
|
|
|
|
2006-03-16 02:38:08 +00:00
|
|
|
# A data structure in the uDAPL headers
|
2006-01-25 02:22:50 +00:00
|
|
|
# is not fully ISO C. Remove -pedantic to silence a warning.
|
2006-03-16 02:38:08 +00:00
|
|
|
mpool_udapl_CFLAGS="`echo $CFLAGS | sed 's/-pedantic//g'`"
|
|
|
|
AS_IF([test "$mpool_udapl_CFLAGS" != "$CFLAGS" -a "$mpool_udapl_happy" = "yes"],
|
2006-01-25 02:22:50 +00:00
|
|
|
[AC_MSG_WARN([Removed -pedantic from CFLAGS for
|
|
|
|
uDAPL component because the uDAPL headers are not fully ISO C])])
|
|
|
|
|
|
|
|
# substitute in the things needed to build uDAPL
|
|
|
|
AC_SUBST([mpool_udapl_CFLAGS])
|
|
|
|
AC_SUBST([mpool_udapl_CPPFLAGS])
|
|
|
|
AC_SUBST([mpool_udapl_LDFLAGS])
|
|
|
|
AC_SUBST([mpool_udapl_LIBS])
|
|
|
|
])dnl
|