diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2004-08-15 18:18:05 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2004-08-15 18:18:05 +0000 |
commit | b628526bfe7db819c11066659eb3f28dbb78a646 (patch) | |
tree | 62eef88fe114f0b87ecb65842eba8b95f7b6f8b3 /lang | |
parent | 01e61c90aebfc2ab25ccba94fee8e37d4e304f9a (diff) | |
download | ports-b628526bfe7db819c11066659eb3f28dbb78a646.tar.gz ports-b628526bfe7db819c11066659eb3f28dbb78a646.zip |
Fix build with gcc 3.4
Notes
Notes:
svn path=/head/; revision=116301
Diffstat (limited to 'lang')
-rw-r--r-- | lang/lafontaine/files/patch-exec.c | 10 | ||||
-rw-r--r-- | lang/lafontaine/files/patch-mc.c | 10 | ||||
-rw-r--r-- | lang/lafontaine/files/patch-parser.y | 11 |
3 files changed, 31 insertions, 0 deletions
diff --git a/lang/lafontaine/files/patch-exec.c b/lang/lafontaine/files/patch-exec.c new file mode 100644 index 000000000000..58b34ed07257 --- /dev/null +++ b/lang/lafontaine/files/patch-exec.c @@ -0,0 +1,10 @@ +--- src/exec.c.orig Sun Aug 15 19:57:08 2004 ++++ src/exec.c Sun Aug 15 19:57:55 2004 +@@ -108,6 +108,7 @@ + { 47031, 47031, 47031} //15 or + }; + ++void exec_execute_proc(struct s_proc *proc); + + /** + main execution function.<br> diff --git a/lang/lafontaine/files/patch-mc.c b/lang/lafontaine/files/patch-mc.c new file mode 100644 index 000000000000..89863a045ea7 --- /dev/null +++ b/lang/lafontaine/files/patch-mc.c @@ -0,0 +1,10 @@ +--- src/mc.c.orig Sun Aug 15 20:00:39 2004 ++++ src/mc.c Sun Aug 15 20:01:11 2004 +@@ -36,6 +36,7 @@ + /*>>> here is the declaration of the turtle */ + struct s_turtle my_turtle; + ++void mc_free(void); + + /** + Freeing and reinitializing all middle-code informations.<br> diff --git a/lang/lafontaine/files/patch-parser.y b/lang/lafontaine/files/patch-parser.y new file mode 100644 index 000000000000..a7920ad0e35d --- /dev/null +++ b/lang/lafontaine/files/patch-parser.y @@ -0,0 +1,11 @@ +--- src/parser.y.orig Sun Aug 15 19:59:37 2004 ++++ src/parser.y Sun Aug 15 20:13:24 2004 +@@ -30,6 +30,8 @@ + #include "constant.h" + #include "variable.h" + ++ void yyerror(char *error); ++ + guint linecnt; + gchar *input_str; + guint curpos; |