aboutsummaryrefslogtreecommitdiff
path: root/backends/midi
diff options
context:
space:
mode:
authorMax Horn2010-07-20 08:25:13 +0000
committerMax Horn2010-07-20 08:25:13 +0000
commit37aa8a7499e6aa1698beb7e241c42ba19475a83a (patch)
tree459fb3d2eb5482141ef233e676ca55cf10b5978e /backends/midi
parente527ad162f3fb69508947f7229d7b98f8aceafed (diff)
downloadscummvm-rg350-37aa8a7499e6aa1698beb7e241c42ba19475a83a.tar.gz
scummvm-rg350-37aa8a7499e6aa1698beb7e241c42ba19475a83a.tar.bz2
scummvm-rg350-37aa8a7499e6aa1698beb7e241c42ba19475a83a.zip
BUILD: Unify adding -DUNIX to DEFINES; complete SEQ MIDI detection
* Added a yes/no variable _unix to configure, which controls when -DUNIX is added to DEFINES * Enable SEQ MIDI via _seq_midi by default on UNIX type systems, except for those which override that. * Switch SEQ MIDI code to check #define USE_SEQ_MIDI (alternatively, we could compile it only conditionally...) svn-id: r51055
Diffstat (limited to 'backends/midi')
-rw-r--r--backends/midi/seq.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp
index b1815adee5..06685df59a 100644
--- a/backends/midi/seq.cpp
+++ b/backends/midi/seq.cpp
@@ -28,7 +28,7 @@
* both the QuickTime support and (vkeybd http://www.alsa-project.org/~iwai/alsa.html)
*/
-#if defined(UNIX) && !defined(__BEOS__) && !defined(__MAEMO__) && !defined(__MINT__) && !defined(__ANDROID__)
+#if defined(USE_SEQ_MIDI)
#include "common/util.h"
#include "sound/musicplugin.h"