Skip to content

Commit 2ebc1fa

Browse files
committed
Update to current PMIx 4.0.0 (master)
Signed-off-by: Ralph Castain <[email protected]>
1 parent f1a065f commit 2ebc1fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1729
-1119
lines changed

opal/mca/pmix/pmix4x/pmix/VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ greek=
3030
# command, or with the date (if "git describe" fails) in the form of
3131
# "date<date>".
3232

33-
repo_rev=git7e40284d
33+
repo_rev=gitf87459fe
3434

3535
# If tarball_version is not empty, it is used as the version string in
3636
# the tarball filename, regardless of all other versions listed in
@@ -44,7 +44,7 @@ tarball_version=
4444

4545
# The date when this release was created
4646

47-
date="Jul 26, 2019"
47+
date="Sep 03, 2019"
4848

4949
# The shared library version of each of PMIx's public libraries.
5050
# These versions are maintained in accordance with the "Library

opal/mca/pmix/pmix4x/pmix/bindings/python/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# $HEADER$
2222
#
2323

24-
helpers = setup.py pmix.pyx
24+
helpers = setup.py pmix.pyx pmix.pxi construct.py
2525

2626
if WANT_PYTHON_BINDINGS
2727

opal/mca/pmix/pmix4x/pmix/bindings/python/client.py.in

Lines changed: 0 additions & 33 deletions
This file was deleted.

opal/mca/pmix/pmix4x/pmix/bindings/python/sched.py.in

Lines changed: 0 additions & 137 deletions
This file was deleted.

opal/mca/pmix/pmix4x/pmix/bindings/python/server.py.in

Lines changed: 0 additions & 107 deletions
This file was deleted.

opal/mca/pmix/pmix4x/pmix/config/c_get_alignment.m4

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dnl University of Stuttgart. All rights reserved.
1111
dnl Copyright (c) 2004-2005 The Regents of the University of California.
1212
dnl All rights reserved.
1313
dnl Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
14-
dnl Copyright (c) 2014-2015 Intel, Inc. All rights reserved.
15-
dnl Copyright (c) 2015 Research Organization for Information Science
16-
dnl and Technology (RIST). All rights reserved.
14+
dnl Copyright (c) 2014-2019 Intel, Inc. All rights reserved.
15+
dnl Copyright (c) 2015-2019 Research Organization for Information Science
16+
dnl and Technology (RIST). All rights reserved.
1717
dnl $COPYRIGHT$
1818
dnl
1919
dnl Additional copyrights may follow
@@ -44,7 +44,9 @@ AC_DEFUN([PMIX_C_GET_ALIGNMENT],[
4444
FILE *f=fopen("conftestval", "w");
4545
if (!f) exit(1);
4646
diff = ((char *)&p->x) - ((char *)&p->c);
47+
free(p);
4748
fprintf(f, "%d\n", (diff >= 0) ? diff : -diff);
49+
fclose(f);
4850
]])], [AS_TR_SH([pmix_cv_c_align_$1])=`cat conftestval`],
4951
[AC_MSG_WARN([*** Problem running configure test!])
5052
AC_MSG_WARN([*** See config.log for details.])

0 commit comments

Comments
 (0)