summaryrefslogtreecommitdiffstats
path: root/games/zoom/no_inline.diff
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2017-06-21 03:31:44 -0400
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-06-24 08:32:50 +0700
commitece77e77f3baa96a645724a31ff00e2540be86ac (patch)
treee590c402f9125aa28a10b25508d9556381e1050a /games/zoom/no_inline.diff
parent7f4a537a30a10b48386af9e06e71c965af168087 (diff)
downloadslackbuilds-ece77e77f3baa96a645724a31ff00e2540be86ac.tar.gz
slackbuilds-ece77e77f3baa96a645724a31ff00e2540be86ac.tar.xz
games/zoom: Fix build for -current.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games/zoom/no_inline.diff')
-rw-r--r--games/zoom/no_inline.diff120
1 files changed, 120 insertions, 0 deletions
diff --git a/games/zoom/no_inline.diff b/games/zoom/no_inline.diff
new file mode 100644
index 0000000000..d7ff771e81
--- /dev/null
+++ b/games/zoom/no_inline.diff
@@ -0,0 +1,120 @@
+diff -Naur zoom-1.1.5/src/interp.c zoom-1.1.5.patched/src/interp.c
+--- zoom-1.1.5/src/interp.c 2011-11-05 07:40:53.000000000 -0400
++++ zoom-1.1.5.patched/src/interp.c 2017-06-21 03:26:42.543594700 -0400
+@@ -101,7 +101,7 @@
+ } \
+ }
+
+-static inline void push(ZStack* stack, const ZWord word)
++static void push(ZStack* stack, const ZWord word)
+ {
+ *(stack->stack_top++) = word;
+ stack->stack_size--;
+@@ -131,7 +131,7 @@
+ #endif
+ }
+
+-inline ZWord pop(ZStack* stack)
++ZWord pop(ZStack* stack)
+ {
+ stack->stack_size++;
+
+@@ -159,7 +159,7 @@
+ return *(--stack->stack_top);
+ }
+
+-inline ZWord top(ZStack* stack)
++ZWord top(ZStack* stack)
+ {
+ if (stack->current_frame)
+ {
+@@ -232,7 +232,7 @@
+ return newframe;
+ }
+
+-inline void store(ZStack* stack, int var, ZWord value)
++void store(ZStack* stack, int var, ZWord value)
+ {
+ #ifdef DEBUG
+ printf_debug("Storing %i in Variable #%x\n", value, var);
+@@ -253,7 +253,7 @@
+ }
+ }
+
+-inline void store_nopush(ZStack* stack, int var, ZWord value)
++void store_nopush(ZStack* stack, int var, ZWord value)
+ {
+ #ifdef DEBUG
+ printf_debug("Storing %i in Variable #%x\n", value, var);
+@@ -313,7 +313,7 @@
+ int isdefault;
+ };
+
+-static inline struct prop* get_object_prop_3(ZUWord object, ZWord property)
++static struct prop* get_object_prop_3(ZUWord object, ZWord property)
+ {
+ ZByte* obj;
+ ZByte* prop;
+@@ -364,7 +364,7 @@
+ int header;
+ };
+
+-static inline struct propinfo* get_object_propinfo_4(ZByte* prop)
++static struct propinfo* get_object_propinfo_4(ZByte* prop)
+ {
+ static struct propinfo pinfo;
+
+@@ -387,7 +387,7 @@
+ return &pinfo;
+ }
+
+-static inline struct prop* get_object_prop_4(ZUWord object, ZWord property)
++static struct prop* get_object_prop_4(ZUWord object, ZWord property)
+ {
+ ZByte* obj;
+ ZByte* prop;
+@@ -539,7 +539,7 @@
+ }
+ #endif
+
+-inline static int true_colour(int col)
++static int true_colour(int col)
+ {
+ switch (col)
+ {
+@@ -575,7 +575,7 @@
+ }
+ }
+
+-inline static int convert_colour(int col)
++static int convert_colour(int col)
+ {
+ switch (col)
+ {
+@@ -1473,7 +1473,7 @@
+ return -1;
+ }
+
+-static inline void zcode_setup_window(int window)
++static void zcode_setup_window(int window)
+ {
+ v6_set_window(window);
+ v6_define_window(window,
+@@ -1497,7 +1497,7 @@
+ #endif
+ }
+
+-static inline int zcode_v6_push_stack(ZStack* stack,
++static int zcode_v6_push_stack(ZStack* stack,
+ ZUWord stk,
+ ZUWord value)
+ {
+@@ -1528,7 +1528,7 @@
+ return 1;
+ }
+
+-static inline int v6_window(int win)
++static int v6_window(int win)
+ {
+ if (win > 7)
+ zmachine_fatal("No such window: %i", win);