Skip to content

Commit

Permalink
ssl and crypto libraries are need for vizd because new librdkafka use…
Browse files Browse the repository at this point in the history
…s 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

This reverts commit db786e7.

Change-Id: I1d4b47f154ba455dc2c985a6e9821086b7be1ea7
  • Loading branch information
vmahuli committed Jun 19, 2017
1 parent db786e7 commit e3f5da6
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 e3f5da6

Please sign in to comment.