2006-08-11 01:46:52 +04: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.
|
2015-06-24 06:59:57 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2006-08-11 01:46:52 +04:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
|
|
|
# Use is subject to license terms.
|
2010-09-18 03:04:06 +04:00
|
|
|
# Copyright (c) 2009-2010 Cisco Systems, Inc. All rights reserved.
|
2013-02-28 05:35:55 +04:00
|
|
|
# Copyright (c) 2011-2013 Los Alamos National Security, LLC.
|
2011-11-23 01:24:35 +04:00
|
|
|
# All rights reserved.
|
2006-08-11 01:46:52 +04:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2006-08-11 01:46:52 +04:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2006-08-11 01:46:52 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# MCA_ras_sge_CONFIG([action-if-found], [action-if-not-found])
|
|
|
|
# -----------------------------------------------------------
|
2010-09-18 03:04:06 +04:00
|
|
|
AC_DEFUN([MCA_orte_ras_gridengine_CONFIG],[
|
|
|
|
AC_CONFIG_FILES([orte/mca/ras/gridengine/Makefile])
|
|
|
|
|
2011-11-23 01:24:35 +04:00
|
|
|
ORTE_CHECK_GRIDENGINE([ras_gridengine], [ras_gridengine_happy="yes"], [ras_gridengine_happy="no"])
|
|
|
|
|
2013-02-28 05:35:55 +04:00
|
|
|
AS_IF([test "$ras_gridengine_happy" = "yes"], [$1], [$2])
|
2006-08-11 01:46:52 +04:00
|
|
|
])dnl
|