diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-06-11 14:48:51 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-24 16:50:16 +0200 |
commit | dd4d3c18d6753e1224fbe59d91a4b44f39bc38c0 (patch) | |
tree | 20581d7418ec30ed18666f4201264f35446b9b84 /package/beecrypt/0004-gcc-4.7.patch | |
parent | 0235bc61766bd0d4fecfbd686cd807992ba5f37d (diff) | |
download | buildroot-dd4d3c18d6753e1224fbe59d91a4b44f39bc38c0.tar.gz buildroot-dd4d3c18d6753e1224fbe59d91a4b44f39bc38c0.zip |
package/beecrypt: remove c++ support
Optional C++ support depends on icu, the icu version bump to 59.1
brought ABI-breaking changes
http://site.icu-project.org/download/59#TOC-char16_t-in-C-
which are incompatible with beecrypt. Since beecrypt did not get any
updates upstream since 2009 and no package uses beecrypt's C++ support
we disable this broken option.
With C++ support removed patches 0002 & 0004 are not needed anymore.
Fixes
http://autobuild.buildroot.net/results/a1a/a1ad507371192ddecacab0df91f7b2a84c7c288d/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/beecrypt/0004-gcc-4.7.patch')
-rw-r--r-- | package/beecrypt/0004-gcc-4.7.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/package/beecrypt/0004-gcc-4.7.patch b/package/beecrypt/0004-gcc-4.7.patch deleted file mode 100644 index 767f789069..0000000000 --- a/package/beecrypt/0004-gcc-4.7.patch +++ /dev/null @@ -1,19 +0,0 @@ -Really fixes gcc-4.7 related compile error: -../../include/beecrypt/c++/util/AbstractSet.h:59:27: error: 'containsAll' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive] - -Downloaded from upstream bugtracker: -http://sourceforge.net/p/beecrypt/patches/10/ - -Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> - ---- a/include/beecrypt/c++/util/AbstractSet.h -+++ b/include/beecrypt/c++/util/AbstractSet.h -@@ -56,7 +56,7 @@ - if (c->size() != size()) - return false; - -- return containsAll(*c); -+ return this->containsAll(*c); - } - return false; - } |