[Scummvm-cvs-logs] SF.net SVN: scummvm:[50664] scummvm/trunk

anguslees at users.sourceforge.net anguslees at users.sourceforge.net
Mon Jul 5 02:09:41 CEST 2010


Revision: 50664
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50664&view=rev
Author:   anguslees
Date:     2010-07-05 00:09:41 +0000 (Mon, 05 Jul 2010)

Log Message:
-----------
Skip /dev/sequencer MIDI on Android.

Modified Paths:
--------------
    scummvm/trunk/backends/midi/seq.cpp
    scummvm/trunk/base/plugins.cpp

Modified: scummvm/trunk/backends/midi/seq.cpp
===================================================================
--- scummvm/trunk/backends/midi/seq.cpp	2010-07-05 00:04:18 UTC (rev 50663)
+++ scummvm/trunk/backends/midi/seq.cpp	2010-07-05 00:09:41 UTC (rev 50664)
@@ -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__)
+#if defined(UNIX) && !defined(__BEOS__) && !defined(__MAEMO__) && !defined(__MINT__) && !defined(__ANDROID__)
 
 #include "common/util.h"
 #include "sound/musicplugin.h"

Modified: scummvm/trunk/base/plugins.cpp
===================================================================
--- scummvm/trunk/base/plugins.cpp	2010-07-05 00:04:18 UTC (rev 50663)
+++ scummvm/trunk/base/plugins.cpp	2010-07-05 00:09:41 UTC (rev 50664)
@@ -175,7 +175,7 @@
 		#if defined(UNIX) && defined(USE_ALSA)
 		LINK_PLUGIN(ALSA)
 		#endif
-		#if defined(UNIX) && !defined(__BEOS__) && !defined(__MAEMO__) && !defined(__MINT__)
+		#if defined(UNIX) && !defined(__BEOS__) && !defined(__MAEMO__) && !defined(__MINT__) && !defined(__ANDROID__)
 		LINK_PLUGIN(SEQ)
 		#endif
 		#if defined(__MINT__)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list