summaryrefslogtreecommitdiffstats
path: root/src/sources
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2021-05-19 13:43:36 +0200
committerUwe Klotz <uklotz@mixxx.org>2021-05-19 13:43:36 +0200
commit933fd83cd3703367700b03afd6797762577bd6d4 (patch)
tree2b1be809c1800b6c40530b9798e6a8d82113255a /src/sources
parenta53279f1427e88b87100c038bd8f95a88fabee6a (diff)
parenta494650256a0ba8456afaebaffc635b16824b957 (diff)
Merge branch '2.3' of git@github.com:mixxxdj/mixxx.git
Diffstat (limited to 'src/sources')
-rw-r--r--src/sources/libfaadloader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sources/libfaadloader.cpp b/src/sources/libfaadloader.cpp
index d48890985b..4207cdb40f 100644
--- a/src/sources/libfaadloader.cpp
+++ b/src/sources/libfaadloader.cpp
@@ -29,10 +29,10 @@ LibLoader::LibLoader()
m_neAACDecGetVersion(nullptr) {
// Load shared library
QStringList libnames;
-#ifdef __WINDOWS__
+#if defined(__WINDOWS__)
// http://www.rarewares.org/aac-decoders.php
libnames << "libfaad2.dll";
-#elif __APPLE__
+#elif defined(__APPLE__)
// First try default location
libnames << "libfaad2.dylib";
// Using Homebrew ('brew install faad2' command):