5980b7e042
Wire the security check into ORTE's OOB handshake, and add a "version" check to ensure that both ends are from the same ORTE version. If not, report the mismatch and refuse the connection Fixes trac:4171 cmr=v1.7.5:reviewer=jsquyres:subject=Add a security framework for authenticating connections This commit was SVN r30551. The following Trac tickets were found above: Ticket 4171 --> https://svn.open-mpi.org/trac/ompi/ticket/4171
35 строки
864 B
Makefile
35 строки
864 B
Makefile
#
|
|
# Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
sources = \
|
|
sec_keystone.h \
|
|
sec_keystone_component.c \
|
|
sec_keystone.c
|
|
|
|
# Make the output library in this directory, and name it either
|
|
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
|
# (for static builds).
|
|
|
|
if MCA_BUILD_opal_sec_keystone_DSO
|
|
component_noinst =
|
|
component_install = mca_sec_keystone.la
|
|
else
|
|
component_noinst = libmca_sec_keystone.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(ompilibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_sec_keystone_la_SOURCES = $(sources)
|
|
mca_sec_keystone_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_sec_keystone_la_SOURCES =$(sources)
|
|
libmca_sec_keystone_la_LDFLAGS = -module -avoid-version
|