From 38a8aa516e0fa315e318801e5399f82e51efa8df Mon Sep 17 00:00:00 2001 From: Jordi Vilalta Prat Date: Tue, 6 May 2008 03:00:26 +0000 Subject: Allow static and dynamic plugins to be used at the same time svn-id: r31888 --- engines/lure/detection.cpp | 6 +++++- engines/lure/module.mk | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'engines/lure') diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp index b498ec7f61..7dd1c77348 100644 --- a/engines/lure/detection.cpp +++ b/engines/lure/detection.cpp @@ -195,4 +195,8 @@ bool LureMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common return gd != 0; } -REGISTER_PLUGIN(LURE, PLUGIN_TYPE_ENGINE, LureMetaEngine); +#if PLUGIN_ENABLED_DYNAMIC(LURE) + REGISTER_PLUGIN_DYNAMIC(LURE, PLUGIN_TYPE_ENGINE, LureMetaEngine); +#else + REGISTER_PLUGIN_STATIC(LURE, PLUGIN_TYPE_ENGINE, LureMetaEngine); +#endif diff --git a/engines/lure/module.mk b/engines/lure/module.mk index 6b8bf35b77..ba158756b4 100644 --- a/engines/lure/module.mk +++ b/engines/lure/module.mk @@ -25,7 +25,7 @@ MODULE_OBJS := \ surface.o # This module can be built as a plugin -ifdef BUILD_PLUGINS +ifeq ($(ENABLE_LURE), DYNAMIC_PLUGIN) PLUGIN := 1 endif -- cgit v1.2.3