Skip to content

Instantly share code, notes, and snippets.

@fxthomas
Created February 11, 2012 01:32
Show Gist options
  • Save fxthomas/1795016 to your computer and use it in GitHub Desktop.
Save fxthomas/1795016 to your computer and use it in GitHub Desktop.
Patch for Kite 1.0.4 (with BDW-GC 7.2alpha6)
--- a/backend/common/kite_vm.c 2010-08-21 01:20:25.000000000 +0200
+++ b/backend/common/kite_vm.c 2012-02-11 02:29:37.000000000 +0100
@@ -152,7 +152,12 @@
#endif
#ifdef HAVE_GC_H
+#if GC_VERSION_MAJOR >= 7 && GC_VERSION_MINOR >= 2
+ ret->old_proc = GC_get_warn_proc();
+ GC_set_warn_proc ((GC_warn_proc)kite_ignore_gc_warnings);
+#else
ret->old_proc = GC_set_warn_proc((GC_warn_proc)kite_ignore_gc_warnings);
+#endif
#endif /* HAVE_GC_H */
return ret;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment