2005-07-14 17:28:06 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2005-11-05 22:57:48 +03: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.
|
2015-06-24 06:59:57 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2005-07-14 17:28:06 +04:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2010-09-18 03:04:06 +04:00
|
|
|
# Copyright (c) 2009-2010 Cisco Systems, Inc. All rights reserved.
|
2016-11-21 22:39:18 +03:00
|
|
|
# Copyright (c) 2011-2016 Los Alamos National Security, LLC.
|
2011-11-23 01:24:35 +04:00
|
|
|
# All rights reserved.
|
2005-07-14 17:28:06 +04:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2005-07-14 17:28:06 +04:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2005-07-14 17:28:06 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
# MCA_plm_alps_CONFIG([action-if-found], [action-if-not-found])
|
2005-07-14 17:28:06 +04:00
|
|
|
# -----------------------------------------------------------
|
2010-09-18 03:04:06 +04:00
|
|
|
AC_DEFUN([MCA_orte_plm_alps_CONFIG],[
|
|
|
|
AC_CONFIG_FILES([orte/mca/plm/alps/Makefile])
|
|
|
|
|
2016-11-21 22:39:18 +03:00
|
|
|
OPAL_CHECK_ALPS([plm_alps], [plm_alps_happy="yes"], [plm_alps_happy="no"])
|
2011-11-23 01:24:35 +04:00
|
|
|
|
2015-12-07 18:43:20 +03:00
|
|
|
AS_IF([test "$plm_alps_happy" = "yes"],
|
|
|
|
[$1
|
|
|
|
AC_SUBST([plm_alps_CPPFLAGS])
|
|
|
|
AC_SUBST([plm_alps_LDFLAGS])
|
|
|
|
AC_SUBST([plm_alps_LIBS])],
|
|
|
|
[$2])
|
|
|
|
|
2005-07-14 17:28:06 +04:00
|
|
|
])dnl
|