2005-08-13 14:00:56 +00:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2005-11-05 19:57:48 +00:00
|
|
|
# Copyright (c) 2004-2005 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.
|
2005-08-13 14:00:56 +00:00
|
|
|
# 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.
|
2007-06-05 22:07:30 +00:00
|
|
|
# Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
|
|
|
|
#
|
2005-08-13 14:00:56 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-08-16 00:11:41 +00:00
|
|
|
# MCA_paffinity_linux_CONFIG([action-if-found], [action-if-not-found])
|
2005-08-13 14:00:56 +00:00
|
|
|
# -----------------------------------------------------------
|
2007-06-05 22:07:30 +00:00
|
|
|
m4_include(opal/mca/paffinity/linux/plpa/config/plpa.m4)
|
2005-08-13 14:00:56 +00:00
|
|
|
|
2007-06-15 11:36:22 +00:00
|
|
|
AC_DEFUN([MCA_paffinity_linux_POST_CONFIG],[
|
|
|
|
PLPA_DO_AM_CONDITIONALS
|
|
|
|
])dnl
|
|
|
|
|
2007-06-05 22:07:30 +00:00
|
|
|
AC_DEFUN([MCA_paffinity_linux_CONFIG],[
|
2008-08-13 20:18:37 +00:00
|
|
|
OMPI_VAR_SCOPE_PUSH([PLPA_VERSION])
|
|
|
|
|
|
|
|
# Setup PLPA
|
2007-06-05 22:07:30 +00:00
|
|
|
PLPA_SET_SYMBOL_PREFIX([opal_paffinity_linux_plpa_])
|
2008-08-13 20:18:37 +00:00
|
|
|
PLPA_INCLUDED
|
|
|
|
PLPA_INIT([opal/mca/paffinity/linux/plpa],
|
|
|
|
[AC_MSG_CHECKING([for PLPA version])
|
|
|
|
PLPA_VERSION=`$srcdir/opal/mca/paffinity/linux/plpa/config/plpa_get_version.sh $srcdir/opal/mca/paffinity/linux/plpa/VERSION`
|
|
|
|
AC_DEFINE_UNQUOTED([PAFFINITY_LINUX_PLPA_VERSION],
|
|
|
|
["$PLPA_VERSION"],
|
|
|
|
[Version of PLPA embedded in OMPI])
|
|
|
|
AC_MSG_RESULT([$PLPA_VERSION])
|
|
|
|
$1],
|
|
|
|
[$2])
|
|
|
|
|
|
|
|
OMPI_VAR_SCOPE_POP
|
2005-08-13 14:00:56 +00:00
|
|
|
])dnl
|