diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-03-29 17:14:15 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-29 17:16:12 +0200 |
commit | 4a6602f77cfe429d1dfc4f36964240b7d4410c54 (patch) | |
tree | c52e027487139f47d45a7f139b3bf3c4413e7345 /package/libldns/0004-Comment-out-debugging-remnants.patch | |
parent | b5637a0df266ae5ae1896595e55a192833395b0b (diff) | |
download | buildroot-4a6602f77cfe429d1dfc4f36964240b7d4410c54.tar.gz buildroot-4a6602f77cfe429d1dfc4f36964240b7d4410c54.zip |
libldns: Fix build error with perl 5.10
Add more upstream commits to fix build errors with perl 5.10
introduced by the previous patch to fix build errors with perl 5.22.
Fixes
http://autobuild.buildroot.net/results/325/32519c6d4084f334b7fed9edfb8a8c68a1f840a8/
and many others.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Thomas: reformat patches as proper Git formatted patches.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libldns/0004-Comment-out-debugging-remnants.patch')
-rw-r--r-- | package/libldns/0004-Comment-out-debugging-remnants.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/package/libldns/0004-Comment-out-debugging-remnants.patch b/package/libldns/0004-Comment-out-debugging-remnants.patch new file mode 100644 index 0000000000..659253876b --- /dev/null +++ b/package/libldns/0004-Comment-out-debugging-remnants.patch @@ -0,0 +1,31 @@ +From 9720f6f7fdae210aa6d87d97324abd32e103dd16 Mon Sep 17 00:00:00 2001 +From: Willem Toorop <willem@nlnetlabs.nl> +Date: Thu, 27 Nov 2014 16:50:33 +0100 +Subject: [PATCH] Comment out debugging remnants + +[Backport from upstream commit +a0a943d504debb05ce4d62ea81c2d218a6cc8727, needed for a following patch +fixing the build with Perl 5.10.] +Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> +--- + doc/doxyparse.pl | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/doc/doxyparse.pl b/doc/doxyparse.pl +index a09b2e8..3f7897f 100755 +--- a/doc/doxyparse.pl ++++ b/doc/doxyparse.pl +@@ -79,8 +79,8 @@ if (defined $options{'m'}) { + my @parts = split /[\t ]*\|[\t ]*/, $_; + $functions = shift @parts; + $see_also = join ', ', @parts; +- print "{$functions}\n"; +- print "{$see_also}\n"; ++ #print "{$functions}\n"; ++ #print "{$see_also}\n"; + my @funcs = split /[\t ]*,[\t ]*/, $functions; + my @also = split /[\t ]*,[\t ]*/, $see_also; + $manpages{$funcs[0]} = \@funcs; +-- +2.6.4 + |