diff options
author | Leo Famulari <leo@famulari.name> | 2016-01-06 10:43:18 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-01-07 02:35:38 -0500 |
commit | e6352001c444a82141ea4457e49e69a1c3f8b2bb (patch) | |
tree | 3793b354745f7c343318a5ef307f1d328534cf77 /gnu/packages/patches/w3m-libgc.patch | |
parent | d4aaf954011646413e7c2ca39a34030821e84910 (diff) | |
download | gnu-guix-e6352001c444a82141ea4457e49e69a1c3f8b2bb.tar gnu-guix-e6352001c444a82141ea4457e49e69a1c3f8b2bb.tar.gz |
gnu: w3m: Update patch to use '-p1'.
* gnu/packages/patches/w3m-fix-compile.patch: Rename this file...
* gnu/packages/patches/w3m-libgc.patch: ...to this, and adjust patch
prefix level to '-p1'.
* gnu-system.am (dist_patch_DATA): Update patch name.
* gnu/packages/w3m.scm (w3m)[source]: Update patch name.
[source]: Drop patch flag -p0.
Diffstat (limited to 'gnu/packages/patches/w3m-libgc.patch')
-rw-r--r-- | gnu/packages/patches/w3m-libgc.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/patches/w3m-libgc.patch b/gnu/packages/patches/w3m-libgc.patch new file mode 100644 index 0000000000..0dc6a4027c --- /dev/null +++ b/gnu/packages/patches/w3m-libgc.patch @@ -0,0 +1,28 @@ +This patch fixes w3m compilation with libgc > 7.2. + +Reported: +https://bugs.archlinux.org/task/33397 + +Patch with explanation: +http://anonscm.debian.org/cgit/collab-maint/w3m.git/commit/?id=770eec8304bdbe458 +--- + main.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/main.c b/main.c +index b421943..249eb1a 100644 +--- a/main.c ++++ b/main.c +@@ -833,7 +833,8 @@ main(int argc, char **argv, char **envp) + mySignal(SIGPIPE, SigPipe); + #endif + +- orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc); ++ orig_GC_warn_proc = GC_get_warn_proc(); ++ GC_set_warn_proc(wrap_GC_warn_proc); + err_msg = Strnew(); + if (load_argc == 0) { + /* no URL specified */ +-- +2.6.4 + |