aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/ds
diff options
context:
space:
mode:
authorTony Puccinelli2010-08-13 02:58:52 +0000
committerTony Puccinelli2010-08-13 02:58:52 +0000
commit62d8126df0ec90a9b1f3b660fce769631c57208e (patch)
treecd0ea85ee2cc3dbf9fe211f059a78607e914872b /backends/plugins/ds
parent139a96182d2a52e25b42ec35f834f7a10f30675c (diff)
downloadscummvm-rg350-62d8126df0ec90a9b1f3b660fce769631c57208e.tar.gz
scummvm-rg350-62d8126df0ec90a9b1f3b660fce769631c57208e.tar.bz2
scummvm-rg350-62d8126df0ec90a9b1f3b660fce769631c57208e.zip
added appropriate ifdefs throughout the plugins directory
svn-id: r52053
Diffstat (limited to 'backends/plugins/ds')
-rw-r--r--backends/plugins/ds/ds-provider.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/plugins/ds/ds-provider.h b/backends/plugins/ds/ds-provider.h
index 462c3e3b63..2a3e731d1c 100644
--- a/backends/plugins/ds/ds-provider.h
+++ b/backends/plugins/ds/ds-provider.h
@@ -23,10 +23,12 @@
*
*/
+#if defined(DYNAMIC_MODULES) && defined(__DS__)
+
#include "backends/plugins/elf-provider.h"
class DSPluginProvider : public ELFPluginProvider {
Plugin* createPlugin(const Common::FSNode &node) const;
};
-
+#endif // defined(DYNAMIC_MODULES) && defined(ELF_LOADER_TARGET)