Skip to content

Commit 14a7283

Browse files
committed
Update opal/pmix config script to check for min v3.1.5
Per RM telecon, let's go with a min required version for PMIx of v3.1.5. Signed-off-by: Ralph Castain <[email protected]>
1 parent 9db7893 commit 14a7283

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config/opal_config_pmix.m4

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dnl All rights reserved.
1313
dnl Copyright (c) 2009-2019 Cisco Systems, Inc. All rights reserved.
1414
dnl Copyright (c) 2011-2014 Los Alamos National Security, LLC. All rights
1515
dnl reserved.
16-
dnl Copyright (c) 2014-2019 Intel, Inc. All rights reserved.
16+
dnl Copyright (c) 2014-2020 Intel, Inc. All rights reserved.
1717
dnl Copyright (c) 2014-2018 Research Organization for Information Science
1818
dnl and Technology (RIST). All rights reserved.
1919
dnl Copyright (c) 2016 IBM Corporation. All rights reserved.
@@ -166,11 +166,11 @@ AC_DEFUN([_OPAL_CONFIG_PMIX_EXTERNAL], [
166166
LIBS="$opal_pmix_LIBS_save $opal_pmix_LIBS"
167167
168168
AS_IF([test "$opal_pmix_external_support" = "yes"],
169-
[AC_MSG_CHECKING([if external PMIx version is 3.0.0 or greater])
169+
[AC_MSG_CHECKING([if external PMIx version is 3.1.5 or greater])
170170
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <pmix_version.h>]],
171171
[[
172-
#if PMIX_VERSION_MAJOR < 3L
173-
#error "pmix API version is less than 3.0.0"
172+
#if PMIX_NUMERIC_VERSION < 0x00030105
173+
#error "pmix API version is less than 3.1.5"
174174
#endif
175175
]])],
176176
[AC_MSG_RESULT([yes])],

0 commit comments

Comments
 (0)