aboutsummaryrefslogtreecommitdiff
path: root/games/fceux/fceux-2.2.0-underlink.patch
diff options
context:
space:
mode:
authorM.Dinslage <daedra1980@gmail.com>2013-01-06 07:11:26 +0100
committerdsomero <xgizzmo@slackbuilds.org>2013-01-09 18:52:23 -0500
commitd2d139f6f1733dc9d22e759e1f076d0be4efcec0 (patch)
tree949868d54a03d4f2217159d1eaee946f23bf2691 /games/fceux/fceux-2.2.0-underlink.patch
parent54c929b079208da633aa985df1a31d5520ec5041 (diff)
games/fceux: Updated for version 2.2.0.
Updated underlink patch, cleanups. Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'games/fceux/fceux-2.2.0-underlink.patch')
-rw-r--r--games/fceux/fceux-2.2.0-underlink.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/games/fceux/fceux-2.2.0-underlink.patch b/games/fceux/fceux-2.2.0-underlink.patch
new file mode 100644
index 000000000000..bdd25d32273c
--- /dev/null
+++ b/games/fceux/fceux-2.2.0-underlink.patch
@@ -0,0 +1,22 @@
+diff -up fceux/SConstruct.00 fceux/SConstruct
+--- fceux/SConstruct.00 2013-01-05 01:02:40.508959444 -0600
++++ fceux/SConstruct 2013-01-05 01:05:40.071959252 -0600
+@@ -22,7 +22,7 @@ opts.AddVariables(
+ BoolVariable('SYSTEM_LUA','Use system lua instead of static lua provided with fceux', 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 (SDL only)', 0),
+ BoolVariable('CLANG', 'Compile with llvm-clang instead of gcc', 0)
+@@ -100,6 +100,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"])
++ env.Append(LIBS =["-lX11"])
+
+ ### Lua platform defines
+ ### Applies to all files even though only lua needs it, but should be ok