2008-10-28 20:22:29 +03:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
# 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-01-29 20:59:04 +03:00
|
|
|
# Copyright (c) 2006-2009 Cisco Systems, Inc. All rights reserved.
|
2008-10-28 20:22:29 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# OMPI_CHECK_LOADLEVELER(prefix, [action-if-found], [action-if-not-found])
|
|
|
|
# --------------------------------------------------------
|
|
|
|
AC_DEFUN([OMPI_CHECK_LOADLEVELER],[
|
|
|
|
AC_ARG_WITH([loadleveler],
|
2008-12-02 02:13:13 +03:00
|
|
|
[AC_HELP_STRING([--with-loadleveler(=DIR)],
|
2008-10-28 20:22:29 +03:00
|
|
|
[Directory where the loadleveler software is installed])])
|
2009-01-29 20:59:04 +03:00
|
|
|
OMPI_CHECK_WITHDIR([loadleveler], [$with_loadleveler], [include/llapi.h])
|
2008-10-28 20:22:29 +03:00
|
|
|
|
|
|
|
AS_IF([test "$with_loadleveler" = "no"],
|
|
|
|
[ompi_check_loadleveler_happy="no"],
|
|
|
|
[ompi_check_loadleveler_happy="yes"
|
|
|
|
AS_IF([test ! -z "$with_loadleveler" -a "$with_loadleveler" != "yes"],
|
|
|
|
[ompi_check_loadleveler_dir="$with_loadleveler"],
|
|
|
|
[ompi_check_loadleveler_dir=""])])
|
|
|
|
|
|
|
|
AS_IF([test "$ompi_check_loadleveler_happy" = "yes"],
|
|
|
|
[OMPI_CHECK_PACKAGE([$1],
|
|
|
|
[llapi.h],
|
|
|
|
[llapi],
|
|
|
|
[ll_query],
|
|
|
|
[],
|
|
|
|
[$ompi_check_loadleveler_dir],
|
|
|
|
[],
|
|
|
|
[ompi_check_loadleveler_happy="yes"],
|
|
|
|
[ompi_check_loadleveler_happy="no"])])
|
|
|
|
|
|
|
|
AS_IF([test "$ompi_check_loadleveler_happy" = "yes"],
|
|
|
|
[$2],
|
|
|
|
[AS_IF([test ! -z "$with_loadleveler" -a "$with_loadleveler" != "no"],
|
|
|
|
[AC_MSG_ERROR([LOADLEVELER support requested but not found. Aborting])])
|
|
|
|
$3])
|
|
|
|
])
|