diff options
author | Max Horn | 2010-07-20 08:24:34 +0000 |
---|---|---|
committer | Max Horn | 2010-07-20 08:24:34 +0000 |
commit | 211fcfe7bab49ceeb5e81f4dcb1be7e73c58d7c9 (patch) | |
tree | 35455d260e4631eb54100972704e5de6a38c3064 /base | |
parent | 961079ae195c200020b577d8f7f6a87f2eaac03f (diff) | |
download | scummvm-rg350-211fcfe7bab49ceeb5e81f4dcb1be7e73c58d7c9.tar.gz scummvm-rg350-211fcfe7bab49ceeb5e81f4dcb1be7e73c58d7c9.tar.bz2 scummvm-rg350-211fcfe7bab49ceeb5e81f4dcb1be7e73c58d7c9.zip |
MIDI: Build and use ALSA driver if and only if USE_ALSA is defined
svn-id: r51053
Diffstat (limited to 'base')
-rw-r--r-- | base/plugins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index 29383f1009..f23fbb48d8 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -172,7 +172,7 @@ public: #if defined(WIN32) && !defined(_WIN32_WCE) && !defined(__SYMBIAN32__) LINK_PLUGIN(WINDOWS) #endif - #if defined(UNIX) && defined(USE_ALSA) + #if defined(USE_ALSA) LINK_PLUGIN(ALSA) #endif #if defined(UNIX) && !defined(__BEOS__) && !defined(__MAEMO__) && !defined(__MINT__) && !defined(__ANDROID__) |