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.
|
2015-06-24 06:59:57 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2008-10-28 20:22:29 +03:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2016-04-20 18:38:57 +03:00
|
|
|
# Copyright (c) 2006-2016 Cisco Systems, Inc. All rights reserved.
|
2016-03-01 21:01:51 +03:00
|
|
|
# Copyright (c) 2016 Los Alamos National Security, LLC. All rights
|
|
|
|
# reserved.
|
2008-10-28 20:22:29 +03:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2008-10-28 20:22:29 +03:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2008-10-28 20:22:29 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# 1. if --with-sge is given, always build
|
|
|
|
# 2. if --without-sge is given, never build
|
|
|
|
# 3. if neither is given, build if-and-only-if you find either qrsh in path or
|
|
|
|
# sge_root in environment
|
|
|
|
|
2009-10-24 05:04:35 +04:00
|
|
|
# ORTE_CHECK_GRIDENGINE(prefix, [action-if-found], [action-if-not-found])
|
2008-10-28 20:22:29 +03:00
|
|
|
# --------------------------------------------------------
|
2009-10-24 05:04:35 +04:00
|
|
|
AC_DEFUN([ORTE_CHECK_GRIDENGINE],[
|
2016-03-01 21:01:51 +03:00
|
|
|
if test -z "$orte_gridengine_build" ; then
|
|
|
|
AC_ARG_WITH([sge],
|
|
|
|
[AC_HELP_STRING([--with-sge],
|
|
|
|
[Build SGE or Grid Engine support (default: no)])])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([if user requested SGE build])
|
|
|
|
orte_gridengine_build="no"
|
|
|
|
AS_IF([test "$with_sge" = "yes"],
|
|
|
|
[AC_MSG_RESULT([yes])
|
|
|
|
orte_gridengine_build=yes],
|
|
|
|
[AS_IF([test "$with_sge" = "no"],
|
|
|
|
[AC_MSG_RESULT([no])],
|
|
|
|
[AC_MSG_RESULT([not specified; checking environment])
|
|
|
|
AC_CHECK_PROG([QRSH], [qrsh], [qrsh])
|
|
|
|
AS_IF([test "$QRSH" != ""],
|
|
|
|
[orte_gridengine_build=yes],
|
|
|
|
[AC_MSG_CHECKING([for SGE_ROOT environment variable])
|
|
|
|
AS_IF([test "$SGE_ROOT" != ""],
|
|
|
|
[AC_MSG_RESULT([found])
|
|
|
|
orte_gridengine_build=yes],
|
|
|
|
[AC_MSG_RESULT([not found])])])])])
|
2008-10-28 20:22:29 +03:00
|
|
|
|
2016-04-20 18:38:57 +03:00
|
|
|
OPAL_SUMMARY_ADD([[Resource Managers]],[[Grid Engine]],[$1],[$orte_gridengine_build])
|
2016-03-01 21:01:51 +03:00
|
|
|
fi
|
2008-10-28 20:22:29 +03:00
|
|
|
|
2009-10-24 05:04:35 +04:00
|
|
|
AS_IF([test "$orte_gridengine_build" = "yes"],
|
2015-06-24 06:59:57 +03:00
|
|
|
[$2],
|
2008-10-28 20:22:29 +03:00
|
|
|
[$3])
|
|
|
|
])
|