Fix build failure caused by erroneous use of an undeclared symbol. Patch copied from upstream bug report: https://rt.cpan.org/Public/Bug/Display.html?id=117793 From 0be0223422e6e5f4091c6e4e058d213623eed105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Mon, 12 Sep 2016 14:40:44 +0200 Subject: [PATCH] Skip preprocessor symbol only CURL_STRICTER MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CURL_STRICTER leaked into curl-constants.c when building against curl-7.50.2. This is a preprocessor only macro without a value. CPAN RT#117793 Signed-off-by: Petr Písař --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index f9170bb..ad2bd3d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -127,7 +127,7 @@ if (!defined($curl_h)) { close H; for my $e (sort @syms) { - if($e =~ /(OBSOLETE|^CURL_EXTERN|_LAST\z|_LASTENTRY\z)/) { + if($e =~ /(OBSOLETE|^CURL_EXTERN|^CURL_STRICTER\z|_LAST\z|_LASTENTRY\z)/) { next; } my ($group) = $e =~ m/^([^_]+_)/; -- 2.7.4 ='/guix/log/gnu/packages/valgrind.scm'>logtreecommitdiff
AgeCommit message (Expand)Author
2022-02-16gnu: valgrind: Remove riscv64-linux from supported-systems....* gnu/packages/valgrind.scm (valgrind)[supported-systems]: New field. Efraim Flashner
2022-01-28gnu: valgrind: Add version 3.18.1....* gnu/packages/valgrind.scm (valgrind-3.18): New variable. Ludovic Courtès
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-06-23gnu: valgrind: Update to 3.17.0....* gnu/packages/valgrind.scm (valgrind): Update to 3.17.0. Chris Marusich
2020-06-27gnu: valgrind: Update to 3.16.1....* gnu/packages/valgrind.scm (valgrind): Update to 3.16.1. Marius Bakke
2020-06-27gnu: valgrind: Don't depend on GDB.......but add a special 'valgrind/interactive' variant for end users. * gnu/packages/valgrind.scm (valgrind)[inputs]: Remove. [properties]: New field. (valgrind/interactive): New public variable. Marius Bakke