diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2019-05-03 17:50:35 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2019-05-03 17:50:35 +0000 |
commit | b9c99afb1425e74b9ad37f45fa7af0c59aa38ac0 (patch) | |
tree | 894fbd096d639d60a103d1eb688c9b28cb7fe6f3 /graphics/exact-image/files/patch-frontends-bardecode.cc | |
parent | x11-wm/sway: update to 1.1.r1 (diff) |
- Update to version 0.9.2 and make it build on both amd64 and i386 by
defining __LONG_LONG_SUPPORTED macro, which allows to pull llabs(3)
for 64-bit numbers; was not a problem on amd64 because sizeof(long)
== 8 there and thus no `long long' help needed
- Bump required C++ standard to C++03; it's not quite ready for later
ones due to the this:
bardecode/code25i.hh:34:29: error: in-class initializer for static
data member of type 'const double' requires 'constexpr' specifier
- GC no-op `post-extract' target, patches that were applied upstream,
and no longer relevant libungif -> libgif fixups in the Makefile
Notes
Notes:
svn path=/head/; revision=500748
Diffstat (limited to '')
-rw-r--r-- | graphics/exact-image/files/patch-frontends-bardecode.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/graphics/exact-image/files/patch-frontends-bardecode.cc b/graphics/exact-image/files/patch-frontends-bardecode.cc deleted file mode 100644 index 15ebbcfb985e..000000000000 --- a/graphics/exact-image/files/patch-frontends-bardecode.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- frontends/bardecode.cc.orig 2010-06-18 18:02:15.000000000 +0400 -+++ frontends/bardecode.cc 2014-01-13 07:31:33.549465639 +0400 -@@ -145,7 +145,7 @@ - } - } - -- for (std::map<scanner_result_t,int>::const_iterator it = codes.begin(); -+ for (std::map<scanner_result_t,int,comp>::const_iterator it = codes.begin(); - it != codes.end(); - ++it) { - if (it->first.type&(ean|code128|gs1_128) || it->second > 1) |