aboutsummaryrefslogtreecommitdiff
path: root/games/xmulti
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-08-22 16:01:52 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-08-22 16:01:52 +0000
commit3059ad39db521b92b8f103df03ce3dfc44b96843 (patch)
tree4cdc66bc3f90d3777939c6e031e2fbb3ad60a147 /games/xmulti
parent34a73778a18d3d67ccea8922e68763e5bc2395fe (diff)
downloadports-3059ad39db521b92b8f103df03ce3dfc44b96843.tar.gz
ports-3059ad39db521b92b8f103df03ce3dfc44b96843.zip
Fix build with gcc-3.4
Notes
Notes: svn path=/head/; revision=117038
Diffstat (limited to 'games/xmulti')
-rw-r--r--games/xmulti/files/patch-html_frame__add.c14
-rw-r--r--games/xmulti/files/patch-html_style__term.c13
-rw-r--r--games/xmulti/files/patch-html_style__y.y15
3 files changed, 42 insertions, 0 deletions
diff --git a/games/xmulti/files/patch-html_frame__add.c b/games/xmulti/files/patch-html_frame__add.c
new file mode 100644
index 000000000000..f7b26ef994b5
--- /dev/null
+++ b/games/xmulti/files/patch-html_frame__add.c
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- html/frame_add.c.orig Sun Aug 22 18:00:16 2004
++++ html/frame_add.c Sun Aug 22 18:00:27 2004
+@@ -215,7 +215,7 @@
+ case SSTERM_LENGTH_PX:
+ bfi->next_linesep = bsi->line_height.num - linesep;
+ break;
+- default:
++ default: break;
+ }
+
+ bfi->cur_x = 0;
diff --git a/games/xmulti/files/patch-html_style__term.c b/games/xmulti/files/patch-html_style__term.c
new file mode 100644
index 000000000000..27e1c6a78c5f
--- /dev/null
+++ b/games/xmulti/files/patch-html_style__term.c
@@ -0,0 +1,13 @@
+
+$FreeBSD$
+
+--- html/style_term.c.orig Sun Aug 22 17:59:45 2004
++++ html/style_term.c Sun Aug 22 17:59:56 2004
+@@ -102,6 +102,7 @@
+ case SSTERM_HEXCOLOR:
+ case SSTERM_URL:
+ case SSTERM_RGB:
++ break;
+ }
+ return 0;
+ }
diff --git a/games/xmulti/files/patch-html_style__y.y b/games/xmulti/files/patch-html_style__y.y
new file mode 100644
index 000000000000..f9151d6c8839
--- /dev/null
+++ b/games/xmulti/files/patch-html_style__y.y
@@ -0,0 +1,15 @@
+
+$FreeBSD$
+
+--- html/style_y.y.orig Sun Aug 22 17:59:06 2004
++++ html/style_y.y Sun Aug 22 17:59:22 2004
+@@ -255,7 +255,8 @@
+ case SSTERM_HEXCOLOR:
+ case SSTERM_URL:
+ case SSTERM_RGB:
+- }
++ break;
++ }
+ $$ = $2;
+ }
+ | '+' term_base { $$ = $2; }