Fixed mixup in win32 plugin provider code, and added win32 & dc plugin providers to the build system
svn-id: r24150
This commit is contained in:
parent
8d82ffd31b
commit
d88288120b
2 changed files with 4 additions and 2 deletions
|
@ -13,7 +13,9 @@ MODULE_OBJS := \
|
||||||
midi/quicktime.o \
|
midi/quicktime.o \
|
||||||
midi/seq.o \
|
midi/seq.o \
|
||||||
midi/windows.o \
|
midi/windows.o \
|
||||||
|
plugins/dc/dc-provider.o \
|
||||||
plugins/posix/posix-provider.o \
|
plugins/posix/posix-provider.o \
|
||||||
|
plugins/win32/win32-provider.o \
|
||||||
saves/savefile.o \
|
saves/savefile.o \
|
||||||
saves/default/default-saves.o \
|
saves/default/default-saves.o \
|
||||||
timer/default/default-timer.o
|
timer/default/default-timer.o
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef DYNAMIC_MODULES
|
#if defined(DYNAMIC_MODULES) && defined(_WIN32)
|
||||||
|
|
||||||
#include "backends/plugins/win32/win32-provider.h"
|
#include "backends/plugins/win32/win32-provider.h"
|
||||||
#include "backends/plugins/dynamic-plugin.h"
|
#include "backends/plugins/dynamic-plugin.h"
|
||||||
|
@ -121,4 +121,4 @@ PluginList Win32PluginProvider::getPlugins() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif // DYNAMIC_MODULES
|
#endif // defined(DYNAMIC_MODULES) && defined(_WIN32)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue