summaryrefslogtreecommitdiffstats
path: root/src/sources
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2021-05-19 13:19:31 +0200
committerUwe Klotz <uklotz@mixxx.org>2021-05-19 13:25:15 +0200
commit4d1ba6025141d8b9e6e32e4b94af6229d59d817e (patch)
treea26df1ed07c45cb5a679ccebe490499e48339975 /src/sources
parent7e16ae58691a81cbd1c74e8b63a8a96390c44285 (diff)
Fix -Wundef warnings/errors
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):