aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/win32/win32-provider.cpp
diff options
context:
space:
mode:
authorMax Horn2006-10-07 00:35:05 +0000
committerMax Horn2006-10-07 00:35:05 +0000
commitd88288120bbe3f710a264f9ff675f9c3ee2d6da9 (patch)
treefb1147276b65cebbe7432b45baab2ebe95acefc1 /backends/plugins/win32/win32-provider.cpp
parent8d82ffd31b1b85f94f5ef3a17a5a51ae5855990d (diff)
downloadscummvm-rg350-d88288120bbe3f710a264f9ff675f9c3ee2d6da9.tar.gz
scummvm-rg350-d88288120bbe3f710a264f9ff675f9c3ee2d6da9.tar.bz2
scummvm-rg350-d88288120bbe3f710a264f9ff675f9c3ee2d6da9.zip
Fixed mixup in win32 plugin provider code, and added win32 & dc plugin providers to the build system
svn-id: r24150
Diffstat (limited to 'backends/plugins/win32/win32-provider.cpp')
-rw-r--r--backends/plugins/win32/win32-provider.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/plugins/win32/win32-provider.cpp b/backends/plugins/win32/win32-provider.cpp
index b647a9ba05..5eb607dc71 100644
--- a/backends/plugins/win32/win32-provider.cpp
+++ b/backends/plugins/win32/win32-provider.cpp
@@ -21,7 +21,7 @@
*
*/
-#ifdef DYNAMIC_MODULES
+#if defined(DYNAMIC_MODULES) && defined(_WIN32)
#include "backends/plugins/win32/win32-provider.h"
#include "backends/plugins/dynamic-plugin.h"
@@ -121,4 +121,4 @@ PluginList Win32PluginProvider::getPlugins() {
}
-#endif // DYNAMIC_MODULES
+#endif // defined(DYNAMIC_MODULES) && defined(_WIN32)