diff options
author | arved <arved@FreeBSD.org> | 2004-08-16 02:18:05 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2004-08-16 02:18:05 +0800 |
commit | 7be61b42135a27438441063d0c66f61014118568 (patch) | |
tree | 6c90e9424e1b404ff1f530ad99a472f0082a1b55 /lang | |
parent | 3af590669d8ec33d628b8e24e02bbc40c3fab91f (diff) | |
download | freebsd-ports-gnome-7be61b42135a27438441063d0c66f61014118568.tar.gz freebsd-ports-gnome-7be61b42135a27438441063d0c66f61014118568.tar.zst freebsd-ports-gnome-7be61b42135a27438441063d0c66f61014118568.zip |
Fix build with gcc 3.4
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; |