forked from pool/scummvm
* General: - Improved audio device detection and fallback. There should be no more silent errors due to invalid audio devices. Instead ScummVM should pick up a suitable alternative device. * Mohawk: - Added detection entries for more variants of some Living Books games. * Tinsel: - Fixed a regression that made Discworld uncompletable. * SAGA: - Fixed a regression in Inherit the Earth's dragon walk code which was causing crashes there. - Fixed a regression causing various crashes in I Have No Mouth and I Must Scream. * SCI: - Added detection entries for some Macintosh game versions. - Audio settings are now stored correctly for the CD version of EcoQuest 1. * SCUMM: - Fixed graphics bug in FM-TOWNS versions of games on ARM devices (Android, iPhone, etc.). OBS-URL: https://build.opensuse.org/package/show/games/scummvm?expand=0&rev=23
14 lines
534 B
Diff
14 lines
534 B
Diff
Index: rules.mk
|
|
===================================================================
|
|
--- rules.mk.orig
|
|
+++ rules.mk
|
|
@@ -43,7 +43,7 @@ ifdef PLUGIN
|
|
PLUGIN-$(MODULE) := plugins/$(PLUGIN_PREFIX)$(notdir $(MODULE))$(PLUGIN_SUFFIX)
|
|
$(PLUGIN-$(MODULE)): $(MODULE_OBJS-$(MODULE)) $(PLUGIN_EXTRA_DEPS)
|
|
$(QUIET)$(MKDIR) plugins
|
|
- $(QUIET_PLUGIN)$(CXX) $(filter-out $(PLUGIN_EXTRA_DEPS),$+) $(PLUGIN_LDFLAGS) -o $@
|
|
+ $(QUIET_PLUGIN)$(CXX) $(filter-out $(PLUGIN_EXTRA_DEPS),$+) $(PLUGIN_LDFLAGS) $(LIBS) -o $@
|
|
|
|
# Reset PLUGIN var
|
|
PLUGIN:=
|