lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 1dbf398d5ce37cf5ee58b6e9298c14c13fb532ad
parent 55421fe27b3826e33b4223d5e42807d7c91248a8
Author: Hauke Mehrtens <hauke@hauke-m.de>
Date:   Fri, 20 Nov 2015 23:30:22 +0100

Merge pull request #1990 from hauke/libgpg-error

libgpg-error: fix build with gcc-5
Diffstat:
Alibs/libgpg-error/patches/001-gcc5.patch | 54++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+), 0 deletions(-)

diff --git a/libs/libgpg-error/patches/001-gcc5.patch b/libs/libgpg-error/patches/001-gcc5.patch @@ -0,0 +1,54 @@ +From: Daniel Kahn Gillmor <dkg@fifthhorseman.net> +Date: Mon, 16 Mar 2015 17:40:12 +0000 (-0400) +Subject: Avoid breakage with gcc 5 +X-Git-Tag: libgpg-error-1.19~7 +X-Git-Url: http://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commitdiff_plain;h=c01c8f0c4f55d76b037c7f6aa44ad25ede18d38a + +Avoid breakage with gcc 5 + +* src/Makefile.am: Add -P to the C preprocessor when building +mkerrcodes.h, to avoid a noisy intermediate pipeline. + +-- + +With gcc 5 without this patch, we see many errors like the following: + +gcc -I. -I. -o mkerrcodes ./mkerrcodes.c +In file included from ./mkerrcodes.c:26:0: +./mkerrcodes.h:9:5: error: expected expression before ‘,’ token + { , "GPG_ERR_E2BIG" }, + ^ +./mkerrcodes.h:10:5: error: expected expression before ‘,’ token + { , "GPG_ERR_EACCES" }, + ^ + +This patch cleans up the generated mkerrcodes.h by making the +intermediate stage clean for all the versions of gcc i tested (4.x and +5). + +Debian-Bug-Id: 777374 +Signed-Off-By: Daniel Kahn Gillmor <dkg@fifthhorseman.net> +--- + +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -140,7 +140,7 @@ code-to-errno.h: Makefile mkerrnos.awk e + # It is correct to use $(CPP). We want the host's idea of the error codes. + mkerrcodes.h: Makefile mkerrcodes.awk $(gpg_extra_headers) + $(AWK) -f $(srcdir)/mkerrcodes1.awk $(srcdir)/errnos.in >_$@ +- $(CPP) $(CPPFLAGS) $(extra_cppflags) _$@ | grep GPG_ERR_ | \ ++ $(CPP) $(CPPFLAGS) $(extra_cppflags) -P _$@ | grep GPG_ERR_ | \ + $(AWK) -f $(srcdir)/mkerrcodes.awk >$@ + -rm _$@ + +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -979,7 +979,7 @@ code-to-errno.h: Makefile mkerrnos.awk e + # It is correct to use $(CPP). We want the host's idea of the error codes. + mkerrcodes.h: Makefile mkerrcodes.awk $(gpg_extra_headers) + $(AWK) -f $(srcdir)/mkerrcodes1.awk $(srcdir)/errnos.in >_$@ +- $(CPP) $(CPPFLAGS) $(extra_cppflags) _$@ | grep GPG_ERR_ | \ ++ $(CPP) $(CPPFLAGS) $(extra_cppflags) -P _$@ | grep GPG_ERR_ | \ + $(AWK) -f $(srcdir)/mkerrcodes.awk >$@ + -rm _$@ +