mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
games/dunelegacy: Patched to support SDL2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org> Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
5e441c9e53
commit
3d3f1ef913
2 changed files with 26 additions and 1 deletions
22
games/dunelegacy/SDL2.patch
Normal file
22
games/dunelegacy/SDL2.patch
Normal file
|
@ -0,0 +1,22 @@
|
|||
--- dunelegacy-0.96.4/src/FileClasses/music/DirectoryPlayer.cpp.orig 2017-11-02 23:35:12.597820783 +0700
|
||||
+++ dunelegacy-0.96.4/src/FileClasses/music/DirectoryPlayer.cpp 2017-11-02 23:35:30.146839251 +0700
|
||||
@@ -61,7 +61,7 @@
|
||||
|
||||
music = nullptr;
|
||||
|
||||
- Mix_Init(MIX_INIT_FLUIDSYNTH | MIX_INIT_FLAC | MIX_INIT_MP3 | MIX_INIT_OGG);
|
||||
+ Mix_Init(MIX_INIT_MID | MIX_INIT_FLAC | MIX_INIT_MP3 | MIX_INIT_OGG);
|
||||
}
|
||||
|
||||
DirectoryPlayer::~DirectoryPlayer() {
|
||||
--- dunelegacy-0.96.4/src/FileClasses/music/XMIPlayer.cpp.orig 2017-11-02 23:40:31.473154207 +0700
|
||||
+++ dunelegacy-0.96.4/src/FileClasses/music/XMIPlayer.cpp 2017-11-02 23:40:55.447179102 +0700
|
||||
@@ -32,7 +32,7 @@
|
||||
XMIPlayer::XMIPlayer() : MusicPlayer(settings.audio.playMusic, settings.audio.musicVolume) {
|
||||
music = nullptr;
|
||||
|
||||
- if((Mix_Init(MIX_INIT_FLUIDSYNTH) & MIX_INIT_FLUIDSYNTH) == 0) {
|
||||
+ if((Mix_Init(MIX_INIT_MID) & MIX_INIT_MID) == 0) {
|
||||
SDL_Log("XMIPlayer: Failed to init required midi support: %s", SDL_GetError());
|
||||
}
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
PRGNAM=dunelegacy
|
||||
VERSION=${VERSION:-0.96.4}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -60,6 +60,9 @@ find -L . \
|
|||
# Use our CFLAGS. Environment is ignored by configure script.
|
||||
sed -i "s/-O3/$SLKCFLAGS/" configure
|
||||
|
||||
# Patched to support SDL 2.0.2
|
||||
patch -p1 < $CWD/SDL2.patch
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--bindir=/usr/games \
|
||||
|
|
Loading…
Reference in a new issue