Skip to content

Commit

Permalink
ssl and crypto libraries are need for vizd because new librdkafka
Browse files Browse the repository at this point in the history
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
(cherry picked from commit 4cee80c)
  • Loading branch information
arvindvis authored and Karl Klashinsky committed Jun 17, 2017
1 parent 5784f0d commit 11df6c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/analytics/SConscript
Expand Up @@ -55,14 +55,14 @@ AnalyticsEnv.Prepend(LIBS=['cpuinfo',
'pugixml',
'hiredis',
'protobuf',
'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'])

if sys.platform != 'darwin':
AnalyticsEnv.Append(LIBS=['rt'])
Expand Down

0 comments on commit 11df6c0

Please sign in to comment.