summaryrefslogtreecommitdiffstats
path: root/build/features.py
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2020-01-19 22:55:17 +0100
committerDaniel Schürmann <daschuer@mixxx.org>2020-01-19 22:55:17 +0100
commitd4da1f2c582c61d5a38f63720b20e95c9e01718c (patch)
treea4d600756dbf7b421ce0ae72cf92301f8680cd74 /build/features.py
parentcaed8186bcdcb7a13b1c1ead46f9d84f3cdb17d2 (diff)
Use internal libshout if systm provided one is older
Diffstat (limited to 'build/features.py')
-rw-r--r--build/features.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/build/features.py b/build/features.py
index a72130b4f5..f632623e16 100644
--- a/build/features.py
+++ b/build/features.py
@@ -835,15 +835,11 @@ class LiveBroadcasting(Feature):
build.env.Append(CPPDEFINES='__BROADCAST__')
if build.platform_is_linux:
- # Check if system lib is lower 2.4.2 or at least 2.4.4 and not suffering bug
+ # Check if system lib is lower at least 2.4.4 and not suffering bug
# https://bugs.launchpad.net/mixxx/+bug/1833225
if not conf.CheckForPKG('shout', '2.4.4'):
- if conf.CheckForPKG('shout', '2.4.2'):
- print("System's libshout suffers lp1833225, using internal shout_mixxx")
- self.INTERNAL_LINK = True
- else:
- print("(no) here is fine here we just don't want 2.4.2 or 2.4.3")
-
+ self.INTERNAL_LINK = True
+
if not self.INTERNAL_LINK:
self.INTERNAL_LINK = not conf.CheckLib(['libshout', 'shout'])