aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/080_gc72.patch
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2015-01-24 14:36:40 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-01-24 14:37:05 +0000
commit8595cb4102d547388d0d9e699d10a14f8f7aa71c (patch)
treecd27e4b710769000b651b9af4db2704a1cd328dd /debian/patches/080_gc72.patch
parentUpdate Vcs-Browser (diff)
downloadw3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.tar.gz
w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.zip
Integrate Debian changes into 020_debian.patch (closes: #776112)
(debian/patches/*.patch except 010_upstream.patch are merged)
Diffstat (limited to 'debian/patches/080_gc72.patch')
-rw-r--r--debian/patches/080_gc72.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/patches/080_gc72.patch b/debian/patches/080_gc72.patch
deleted file mode 100644
index 4642ce1..0000000
--- a/debian/patches/080_gc72.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Description: Support Boehm GC 7.2
-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=080_gc72.patch;att=1;bug=758831
-From: Micah Cowan <micah@addictivecode.org>
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758831
-Bug-Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=555467
-Bug: http://sourceforge.net/p/w3m/patches/63/
-Bug: http://sourceforge.net/p/w3m/patches/59/
-
-Index: w3m-0.5.3/main.c
-===================================================================
---- w3m-0.5.3.orig/main.c 2014-08-21 12:22:32.000000000 -0700
-+++ w3m-0.5.3/main.c 2014-08-21 12:22:52.419420062 -0700
-@@ -845,7 +845,12 @@ main(int argc, char **argv, char **envp)
- mySignal(SIGPIPE, SigPipe);
- #endif
-
-+#if GC_VERSION_MAJOR >= 7 && GC_VERSION_MINOR >= 2
-+ orig_GC_warn_proc = GC_get_warn_proc();
-+ 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 */