aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/elf/elf-loader.h
diff options
context:
space:
mode:
authorAndre Heider2010-09-15 07:43:16 +0000
committerAndre Heider2010-09-15 07:43:16 +0000
commit41834499edb64965058dea33f1a3176810c52d88 (patch)
treebe351979a751694b3412961719c78df07405dbfe /backends/plugins/elf/elf-loader.h
parentfd4189180da1faee7ac50d13757987bb9625b1ed (diff)
downloadscummvm-rg350-41834499edb64965058dea33f1a3176810c52d88.tar.gz
scummvm-rg350-41834499edb64965058dea33f1a3176810c52d88.tar.bz2
scummvm-rg350-41834499edb64965058dea33f1a3176810c52d88.zip
PLUGINS: Cleanup.
- Unify ELF loader handling in configure - Rename ELF_LOADER_TARGET to USE_ELF_LOADER svn-id: r52728
Diffstat (limited to 'backends/plugins/elf/elf-loader.h')
-rw-r--r--backends/plugins/elf/elf-loader.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/backends/plugins/elf/elf-loader.h b/backends/plugins/elf/elf-loader.h
index ac190327f7..87907d67c9 100644
--- a/backends/plugins/elf/elf-loader.h
+++ b/backends/plugins/elf/elf-loader.h
@@ -23,11 +23,13 @@
*
*/
-#if defined(DYNAMIC_MODULES) && defined(ELF_LOADER_TARGET)
-
#ifndef BACKENDS_PLUGINS_ELF_LOADER_H
#define BACKENDS_PLUGINS_ELF_LOADER_H
+#include "common/scummsys.h"
+
+#if defined(DYNAMIC_MODULES) && defined(USE_ELF_LOADER)
+
#include <stddef.h>
#include "backends/plugins/elf/elf32.h"
@@ -96,7 +98,7 @@ public:
void discard_symtab();
};
-#endif /* BACKENDS_PLUGINS_ELF_LOADER_H */
+#endif /* defined(DYNAMIC_MODULES) && defined(USE_ELF_LOADER) */
-#endif /* defined(DYNAMIC_MODULES) && defined(ELF_LOADER_TARGET) */
+#endif /* BACKENDS_PLUGINS_ELF_LOADER_H */