File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
1
#
2
2
# Copyright (c) 2014-2017 Intel, Inc. All rights reserved.
3
3
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
4
- # Copyright (c) 2015 Research Organization for Information Science
5
- # and Technology (RIST). All rights reserved.
4
+ # Copyright (c) 2015-2018 Research Organization for Information Science
5
+ # and Technology (RIST). All rights reserved.
6
6
# Copyright (c) 2017 IBM Corporation. All rights reserved.
7
7
# $COPYRIGHT$
8
8
#
@@ -38,15 +38,15 @@ endif
38
38
39
39
mcacomponentdir = $(opallibdir )
40
40
mcacomponent_LTLIBRARIES = $(component_install )
41
- mca_pmix_ext2x_la_SOURCES = $(sources )
41
+ mca_pmix_ext2x_la_SOURCES = $(sources ) $( headers )
42
42
mca_pmix_ext2x_la_CFLAGS = $(opal_pmix_ext2x_CFLAGS )
43
43
mca_pmix_ext2x_la_CPPFLAGS =$(opal_pmix_ext2x_CPPFLAGS )
44
44
mca_pmix_ext2x_la_LDFLAGS = -module -avoid-version $(opal_pmix_ext2x_LDFLAGS )
45
45
mca_pmix_ext2x_la_LIBADD = $(top_builddir ) /opal/lib@OPAL_LIB_PREFIX@open-pal.la \
46
46
$(opal_pmix_ext2x_LIBS )
47
47
48
48
noinst_LTLIBRARIES = $(component_noinst )
49
- libmca_pmix_ext2x_la_SOURCES =$(sources )
49
+ libmca_pmix_ext2x_la_SOURCES =$(sources ) $( headers )
50
50
libmca_pmix_ext2x_la_CFLAGS = $(opal_pmix_ext2x_CFLAGS )
51
51
libmca_pmix_ext2x_la_CPPFLAGS = $(opal_pmix_ext2x_CPPFLAGS )
52
52
libmca_pmix_ext2x_la_LDFLAGS = -module -avoid-version $(opal_pmix_ext2x_LDFLAGS )
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dist_opaldata_DATA = help-pmix-ext3x.txt
16
16
sources = \
17
17
ext3x_local.c
18
18
19
- nodist_headers = \
19
+ headers = \
20
20
ext3x.h
21
21
22
22
nodist_sources = \
40
40
41
41
mcacomponentdir = $(opallibdir )
42
42
mcacomponent_LTLIBRARIES = $(component_install )
43
- mca_pmix_ext3x_la_SOURCES = $(sources )
43
+ mca_pmix_ext3x_la_SOURCES = $(sources ) $( headers )
44
44
nodist_mca_pmix_ext3x_la_SOURCES = $(nodist_sources )
45
45
mca_pmix_ext3x_la_CFLAGS = $(opal_pmix_ext3x_CFLAGS )
46
46
mca_pmix_ext3x_la_CPPFLAGS =$(opal_pmix_ext3x_CPPFLAGS )
@@ -49,12 +49,12 @@ mca_pmix_ext3x_la_LIBADD = $(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
49
49
$(opal_pmix_ext3x_LIBS )
50
50
51
51
noinst_LTLIBRARIES = $(component_noinst )
52
- libmca_pmix_ext3x_la_SOURCES =$(sources )
52
+ libmca_pmix_ext3x_la_SOURCES =$(sources ) $( headers )
53
53
nodist_libmca_pmix_ext3x_la_SOURCES = $(nodist_sources )
54
54
libmca_pmix_ext3x_la_CFLAGS = $(opal_pmix_ext3x_CFLAGS )
55
55
libmca_pmix_ext3x_la_CPPFLAGS = $(opal_pmix_ext3x_CPPFLAGS )
56
56
libmca_pmix_ext3x_la_LDFLAGS = -module -avoid-version $(opal_pmix_ext3x_LDFLAGS )
57
57
libmca_pmix_ext3x_la_LIBADD = $(opal_pmix_ext3x_LIBS )
58
58
59
59
clean-local :
60
- $(RM ) -f $(nodist_sources ) $( nodist_headers )
60
+ $(RM ) -f $(nodist_sources )
Original file line number Diff line number Diff line change 1
1
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
2
2
/*
3
3
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
4
- * Copyright (c) 2014-2017 Research Organization for Information Science
5
- * and Technology (RIST). All rights reserved.
4
+ * Copyright (c) 2014-2018 Research Organization for Information Science
5
+ * and Technology (RIST). All rights reserved.
6
6
* Copyright (c) 2014-2015 Mellanox Technologies, Inc.
7
7
* All rights reserved.
8
8
* Copyright (c) 2016 Cisco Systems, Inc. All rights reserved.
@@ -1257,7 +1257,7 @@ static void errreg_cbfunc (pmix_status_t status,
1257
1257
OPAL_ACQUIRE_OBJECT (op );
1258
1258
op -> event -> index = errhandler_ref ;
1259
1259
opal_output_verbose (5 , opal_pmix_base_framework .framework_output ,
1260
- "PMIX2x errreg_cbfunc - error handler registered status=%d, reference=%lu" ,
1260
+ "PMIX3x errreg_cbfunc - error handler registered status=%d, reference=%lu" ,
1261
1261
status , (unsigned long )errhandler_ref );
1262
1262
if (NULL != op -> evregcbfunc ) {
1263
1263
op -> evregcbfunc (pmix3x_convert_rc (status ), errhandler_ref , op -> cbdata );
Original file line number Diff line number Diff line change 3
3
* Copyright (c) 2014-2018 Intel, Inc. All rights reserved.
4
4
* Copyright (c) 2014-2015 Mellanox Technologies, Inc.
5
5
* All rights reserved.
6
- * Copyright (c) 2016 Research Organization for Information Science
7
- * and Technology (RIST). All rights reserved.
6
+ * Copyright (c) 2016-2018 Research Organization for Information Science
7
+ * and Technology (RIST). All rights reserved.
8
8
* Copyright (c) 2017 Los Alamos National Security, LLC. All rights
9
9
* reserved.
10
10
* $COPYRIGHT$
14
14
* $HEADER$
15
15
*/
16
16
17
- #ifndef MCA_PMIX_PMIX2X_H
18
- #define MCA_PMIX_PMIX2X_H
17
+ #ifndef MCA_PMIX_PMIX3X_H
18
+ #define MCA_PMIX_PMIX3X_H
19
19
20
20
#include "opal_config.h"
21
21
@@ -348,4 +348,4 @@ OPAL_MODULE_DECLSPEC pmix_proc_state_t ext3x_convert_opalstate(int state);
348
348
349
349
END_C_DECLS
350
350
351
- #endif /* MCA_PMIX_EXTERNAL_H */
351
+ #endif /* MCA_PMIX_PMIX3X_H */
You can’t perform that action at this time.
0 commit comments