summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2018-12-11 22:40:08 +0100
committerUwe Klotz <uklotz@mixxx.org>2018-12-11 22:40:08 +0100
commit337ec9bda56d4b2fb51ddc6af3b398abed8e7120 (patch)
treefe0117ec78cbc67101ca0c8ef47022cd9f30be39 /build
parent38dc3f4da4657203d7c553ab882385da2f8825fe (diff)
Just replace 'qtkeychain' with 'qt5keychain'
Diffstat (limited to 'build')
-rw-r--r--build/depends.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/build/depends.py b/build/depends.py
index 7adc27faad..09ddc94b5e 100644
--- a/build/depends.py
+++ b/build/depends.py
@@ -698,13 +698,9 @@ class Reverb(Dependence):
class QtKeychain(Dependence):
def configure(self, build, conf):
- # Debian/Ubuntu: qtkeychain
- # Fedora: qt5keychain
- if conf.CheckLib(['qt5keychain']):
- build.env.Append(CPPDEFINES='__QT5KEYCHAIN__')
- elif not conf.CheckLib(['qtkeychain']):
+ if not conf.CheckLib(['qt5keychain']):
raise Exception(
- "Could not find qtkeychain/qt5keychain.")
+ "Could not find qt5keychain.")
class MixxxCore(Feature):