diff options
author | Jordi Vilalta Prat | 2008-05-06 03:00:26 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2008-05-06 03:00:26 +0000 |
commit | 38a8aa516e0fa315e318801e5399f82e51efa8df (patch) | |
tree | c6f7bc89fe2340a846ef891cefc9031cfdb32ec9 /engines/cine | |
parent | 3ac46924e311afb6b02615af04556da823c4f3f3 (diff) | |
download | scummvm-rg350-38a8aa516e0fa315e318801e5399f82e51efa8df.tar.gz scummvm-rg350-38a8aa516e0fa315e318801e5399f82e51efa8df.tar.bz2 scummvm-rg350-38a8aa516e0fa315e318801e5399f82e51efa8df.zip |
Allow static and dynamic plugins to be used at the same time
svn-id: r31888
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/detection.cpp | 6 | ||||
-rw-r--r-- | engines/cine/module.mk | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp index 2b8af918af..8c940bcfd4 100644 --- a/engines/cine/detection.cpp +++ b/engines/cine/detection.cpp @@ -509,4 +509,8 @@ bool CineMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common return gd != 0; } -REGISTER_PLUGIN(CINE, PLUGIN_TYPE_ENGINE, CineMetaEngine); +#if PLUGIN_ENABLED_DYNAMIC(CINE) + REGISTER_PLUGIN_DYNAMIC(CINE, PLUGIN_TYPE_ENGINE, CineMetaEngine); +#else + REGISTER_PLUGIN_STATIC(CINE, PLUGIN_TYPE_ENGINE, CineMetaEngine); +#endif diff --git a/engines/cine/module.mk b/engines/cine/module.mk index 347af2dae1..131709e2ab 100644 --- a/engines/cine/module.mk +++ b/engines/cine/module.mk @@ -22,7 +22,7 @@ MODULE_OBJS = \ various.o # This module can be built as a plugin -ifdef BUILD_PLUGINS +ifeq ($(ENABLE_CINE), DYNAMIC_PLUGIN) PLUGIN := 1 endif |