From 838764eb75b52f799555192fba7ec7902efa8340 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Thu, 3 May 2012 19:21:54 +0900 Subject: Support Boehm GC 7.2 debian/patches/080_gc72.patch: Patch from Gentoo to support Boehm GC 7.2. --- debian/patches/080_gc72.patch | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 debian/patches/080_gc72.patch (limited to 'debian/patches/080_gc72.patch') diff --git a/debian/patches/080_gc72.patch b/debian/patches/080_gc72.patch new file mode 100644 index 0000000..938a5da --- /dev/null +++ b/debian/patches/080_gc72.patch @@ -0,0 +1,30 @@ +Description: Patch from Gentoo to support Boehm GC 7.2 +Origin: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/www-client/w3m/files/w3m-0.5.2-gc72.patch?revision=1.1&view=markup + +diff -Naurb w3m-0.5.2.orig/main.c w3m-0.5.2/main.c +--- w3m-0.5.2.orig/main.c 2007-05-31 10:19:50.000000000 +0900 ++++ w3m-0.5.2/main.c 2009-11-09 08:20:02.184953443 +0900 +@@ -312,7 +312,11 @@ + lock = 0; + } + } ++#if GC_VERSION_MAJOR >= 7 && GC_VERSION_MINOR >= 2 ++ else if (orig_GC_warn_proc = GC_get_warn_proc()) ++#else + else if (orig_GC_warn_proc) ++#endif + orig_GC_warn_proc(msg, arg); + else + fprintf(stderr, msg, (unsigned long)arg); +@@ -842,7 +846,11 @@ + mySignal(SIGPIPE, SigPipe); + #endif + ++#if GC_VERSION_MAJOR >= 7 && GC_VERSION_MINOR >= 2 ++ GC_set_warn_proc(wrap_GC_warn_proc); ++#else + orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc); ++#endif + err_msg = Strnew(); + if (load_argc == 0) { + /* no URL specified */ -- cgit v1.2.3