summaryrefslogtreecommitdiffstats
path: root/games/fceux/fceux-2.1.5-underlink.patch
diff options
context:
space:
mode:
author M.Dinslage <daedra1980@gmail.com>2011-07-12 05:19:27 -0400
committer Niels Horn <niels.horn@slackbuilds.org>2011-07-14 21:54:05 -0300
commit2af8007e4b76ae9c21e4faf53be8410ee7711e94 (patch)
tree915a71e6003f89fd5376c825ca9fbcc17cb2c9f8 /games/fceux/fceux-2.1.5-underlink.patch
parentdbe994aba120a176479cc90a362c8253c602b422 (diff)
downloadslackbuilds-2af8007e4b76ae9c21e4faf53be8410ee7711e94.tar.gz
slackbuilds-2af8007e4b76ae9c21e4faf53be8410ee7711e94.tar.xz
games/fceux: Updated for version 2.1.5.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/fceux/fceux-2.1.5-underlink.patch')
-rw-r--r--games/fceux/fceux-2.1.5-underlink.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/games/fceux/fceux-2.1.5-underlink.patch b/games/fceux/fceux-2.1.5-underlink.patch
new file mode 100644
index 0000000000..0a09440838
--- /dev/null
+++ b/games/fceux/fceux-2.1.5-underlink.patch
@@ -0,0 +1,22 @@
+diff -up fceu2.1.5/SConstruct.00 fceu2.1.5/SConstruct
+--- fceu2.1.5/SConstruct.00 2011-06-11 08:32:32.807001855 -0700
++++ fceu2.1.5/SConstruct 2011-06-11 08:33:05.347001851 -0700
+@@ -11,7 +11,7 @@ opts.AddVariables(
+ BoolVariable('LUA', 'Enable Lua support', 1),
+ BoolVariable('NEWPPU', 'Enable new PPU core', 1),
+ BoolVariable('CREATE_AVI', 'Enable avi creation support (SDL only)', 1),
+- BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '1'),
++ BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '0'),
+ BoolVariable('GTK', 'Enable GTK2 GUI (SDL only)', 1),
+ BoolVariable('GTK3', 'Enable GTK3 GUI (BROKEN/EXPERIMENTAL)', 0),
+ )
+@@ -70,6 +70,9 @@ else:
+ env.ParseConfig('pkg-config --cflags --libs gtk+-3.0')
+ env.Append(CPPDEFINES=["_GTK3"])
+ env.Append(CCFLAGS = ["-D_GTK"])
++ env.Append(LIBS =["-lz"])
++ env.Append(LIBS =["-ldl"])
++
+ ### Lua platform defines
+ ### Applies to all files even though only lua needs it, but should be ok
+ if env['LUA']: