-
Notifications
You must be signed in to change notification settings - Fork 51
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 #3537 from ggouaillardet/topic/pmix_bootstrap
broker: add support for PMIx bootstrap
- Loading branch information
Showing
14 changed files
with
330 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# It is fatal if --enable-pmix-bootstrap and pmix package not found. | ||
# (PKG_CHECK_MODULES default behavior is to fail if package not found) | ||
AC_DEFUN([X_AC_PMIX], [ | ||
AC_ARG_ENABLE([pmix-bootstrap], | ||
AS_HELP_STRING([--enable-pmix-bootstrap], [Enable PMIx bootstrap])) | ||
AS_IF([test "x$enable_pmix_bootstrap" = "xyes"], [ | ||
PKG_CHECK_MODULES([PMIX], [pmix]) | ||
AC_DEFINE([HAVE_LIBPMIX], [1], [Enable PMIx bootstrap]) | ||
]) | ||
]) |
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
Oops, something went wrong.