From 4cee80c54f4df447f9242bbb5fd1692caa78dd6a Mon Sep 17 00:00:00 2001 From: arvindvis Date: Fri, 2 Jun 2017 14:33:50 -0700 Subject: [PATCH] ssl and crypto libraries are need for vizd because new librdkafka uses it. In 4.0 these libraries were added as part of securing introspect changes, so no build failures seen. But for 3.2 they have to be added. Closes-Bug:#1695543 Change-Id: I6f2644c3fb5d4c28eddc61d05966efd3d13d15cd --- src/analytics/SConscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/analytics/SConscript b/src/analytics/SConscript index a29f6199c2d..0f04a2d07bd 100644 --- a/src/analytics/SConscript +++ b/src/analytics/SConscript @@ -58,14 +58,14 @@ AnalyticsEnv.Prepend(LIBS=['cpuinfo', 'protobuf', 'zookeeper_client', 'zookeeper_mt', + 'ssl', + 'crypto', 'boost_filesystem', 'boost_program_options']) (PLATFORM, VERSION, EXTRA) = platform.linux_distribution() if PLATFORM.lower() != 'ubuntu': - AnalyticsEnv.Prepend(LIBS=['ssl', - 'crypto', - 'sasl2']) + AnalyticsEnv.Prepend(LIBS=['sasl2']) database_libs = ['cassandra_cql', 'cassandra']