aboutsummaryrefslogtreecommitdiffstats
path: root/irc
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2008-03-02 07:35:46 +0800
committermarcus <marcus@FreeBSD.org>2008-03-02 07:35:46 +0800
commit050bf6a68e950dc211a073c3d8f7879ada912a0c (patch)
tree4dace29f41014983106e6b59156e20fd6ec63ca8 /irc
parent5defcc9b6bc32b3d746545c7c88274cb44eca9c9 (diff)
downloadfreebsd-ports-gnome-050bf6a68e950dc211a073c3d8f7879ada912a0c.tar.gz
freebsd-ports-gnome-050bf6a68e950dc211a073c3d8f7879ada912a0c.tar.zst
freebsd-ports-gnome-050bf6a68e950dc211a073c3d8f7879ada912a0c.zip
Fix build with guile 1.8.
Reported by: pointyhat via erwin
Diffstat (limited to 'irc')
-rw-r--r--irc/bobot++/files/patch-source_Parser.C13
1 files changed, 13 insertions, 0 deletions
diff --git a/irc/bobot++/files/patch-source_Parser.C b/irc/bobot++/files/patch-source_Parser.C
new file mode 100644
index 000000000000..968fe9e344b2
--- /dev/null
+++ b/irc/bobot++/files/patch-source_Parser.C
@@ -0,0 +1,13 @@
+--- source/Parser.C.orig 2008-03-01 18:34:26.000000000 -0500
++++ source/Parser.C 2008-03-01 18:34:45.000000000 -0500
+@@ -991,8 +991,8 @@ Parser::parseScriptFunction(ServerConnec
+ wd.func = scmFunc;
+ wd.args = args_list;
+
+- gh_catch(SCM_BOOL_T, (scm_catch_body_t) scm_apply_wrapper,
+- (void *)&wd, (scm_catch_handler_t) Interp::ErrorHandler,
++ gh_catch(SCM_BOOL_T, (scm_t_catch_body) scm_apply_wrapper,
++ (void *)&wd, (scm_t_catch_handler) Interp::ErrorHandler,
+ 0);
+ }
+ #endif