-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1187 from rhc54/cmr20/up
Update v2.0 release branch
- Loading branch information
Showing
19 changed files
with
251 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# -*- 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. | ||
# Copyright (c) 2009-2020 Cisco Systems, Inc. All rights reserved | ||
# Copyright (c) 2011-2013 Los Alamos National Security, LLC. | ||
# All rights reserved. | ||
# Copyright (c) 2019 Intel, Inc. All rights reserved. | ||
# Copyright (c) 2022 Nanook Consulting. All rights reserved. | ||
# $COPYRIGHT$ | ||
# | ||
# Additional copyrights may follow | ||
# | ||
# $HEADER$ | ||
# | ||
|
||
# MCA_ras_pbs_CONFIG([action-if-found], [action-if-not-found]) | ||
# ----------------------------------------------------------- | ||
AC_DEFUN([MCA_prte_ras_pbs_CONFIG],[ | ||
AC_CONFIG_FILES([src/mca/ras/pbs/Makefile]) | ||
|
||
AC_ARG_WITH([pbs], | ||
[AS_HELP_STRING([--with-pbs], | ||
[Build PBS scheduler component (default: yes)])]) | ||
|
||
if test "$with_pbs" = "no" ; then | ||
prte_check_pbs_happy="no" | ||
elif test "$with_pbs" = "" ; then | ||
# unless user asked, only build pbs component on linux, AIX, | ||
# and OS X systems (these are the platforms that PBS | ||
# supports) | ||
case $host in | ||
*-linux*|*-aix*|*-apple-darwin*) | ||
prte_check_pbs_happy="yes" | ||
;; | ||
*) | ||
AC_MSG_CHECKING([for pbsdash in PATH]) | ||
PRTE_WHICH([pbsdash], [PRTE_CHECK_PBSDASH]) | ||
if test "$PRTE_CHECK_PBSDASH" = ""; then | ||
prte_check_pbs_happy="no" | ||
else | ||
prte_check_pbs_happy="yes" | ||
fi | ||
AC_MSG_RESULT([$prte_check_pbs_happy]) | ||
;; | ||
esac | ||
else | ||
prte_check_pbs_happy="yes" | ||
fi | ||
|
||
PRTE_SUMMARY_ADD([[Resource Managers]],[[PBS]],[$1],[$prte_check_pbs_happy (scheduler)]) | ||
|
||
AS_IF([test "$prte_check_pbs_happy" = "yes"], | ||
[$2], | ||
[$3]) | ||
|
||
])dnl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.