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

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Tue Jul 20 10:24:35 CEST 2010


Revision: 51053
          http://scummvm.svn.sourceforge.net/scummvm/?rev=51053&view=rev
Author:   fingolfin
Date:     2010-07-20 08:24:34 +0000 (Tue, 20 Jul 2010)

Log Message:
-----------
MIDI: Build and use ALSA driver if and only if USE_ALSA is defined

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

Modified: scummvm/trunk/backends/midi/alsa.cpp
===================================================================
--- scummvm/trunk/backends/midi/alsa.cpp	2010-07-20 07:44:23 UTC (rev 51052)
+++ scummvm/trunk/backends/midi/alsa.cpp	2010-07-20 08:24:34 UTC (rev 51053)
@@ -24,7 +24,7 @@
 
 #include "common/scummsys.h"
 
-#if defined(UNIX) && defined(USE_ALSA)
+#if defined(USE_ALSA)
 
 #include "common/config-manager.h"
 #include "common/util.h"

Modified: scummvm/trunk/base/plugins.cpp
===================================================================
--- scummvm/trunk/base/plugins.cpp	2010-07-20 07:44:23 UTC (rev 51052)
+++ scummvm/trunk/base/plugins.cpp	2010-07-20 08:24:34 UTC (rev 51053)
@@ -172,7 +172,7 @@
 		#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__)


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