diff options
author | joerg <joerg@pkgsrc.org> | 2015-09-23 12:00:53 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2015-09-23 12:00:53 +0000 |
commit | 34e14ac4e5429550c927af86ef9d2529cbaa5c97 (patch) | |
tree | bb651ac5ddc86de7f044a6f3839135fce2ac017d /multimedia/gnash | |
parent | a09cb65e05e9b71477ebe5e0648dc448fe10c015 (diff) | |
download | pkgsrc-34e14ac4e5429550c927af86ef9d2529cbaa5c97.tar.gz |
Fix build against newer Boost.
Diffstat (limited to 'multimedia/gnash')
-rw-r--r-- | multimedia/gnash/distinfo | 3 | ||||
-rw-r--r-- | multimedia/gnash/patches/patch-libbase_accumulator.h | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/multimedia/gnash/distinfo b/multimedia/gnash/distinfo index cf936a1e920..b2190797579 100644 --- a/multimedia/gnash/distinfo +++ b/multimedia/gnash/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.26 2014/08/19 13:39:24 joerg Exp $ +$NetBSD: distinfo,v 1.27 2015/09/23 12:00:53 joerg Exp $ SHA1 (gnash-0.8.10.tar.bz2) = be3b12a5edcd3b05f2ae73d02f0991aa786e7300 RMD160 (gnash-0.8.10.tar.bz2) = 0093174ec0a912309772c033b5f1c1ad46ab41dc @@ -9,6 +9,7 @@ SHA1 (patch-libbase_GnashImageGif.cpp) = cbe8fa60ba51f2f98c801135cbeec18a7424baf SHA1 (patch-libbase_GnashSleep.h) = f713b29feb0153efa24c10df20e0ac8342b88265 SHA1 (patch-libbase_IOChannel.h) = 6b2b66291598e574f13a6a5ee905d6d5f1a459e8 SHA1 (patch-libbase_Makefile.in) = c5b6533f5ac2b2ee26d0547c3054375e72512ccf +SHA1 (patch-libbase_accumulator.h) = 6af23d8909dc04cec97516f7d71196da79738454 SHA1 (patch-libbase_rc.cpp) = 2df75034a7f195864931504041ad956142495313 SHA1 (patch-libcore_DragState.h) = d6029d623a7a45e85a8deaca3b4740bd74785aed SHA1 (patch-libcore_Makefile.in) = 6b92917f0be3779b7f6e1993ac29960cef50c736 diff --git a/multimedia/gnash/patches/patch-libbase_accumulator.h b/multimedia/gnash/patches/patch-libbase_accumulator.h new file mode 100644 index 00000000000..dc64ca15eed --- /dev/null +++ b/multimedia/gnash/patches/patch-libbase_accumulator.h @@ -0,0 +1,12 @@ +$NetBSD: patch-libbase_accumulator.h,v 1.1 2015/09/23 12:00:53 joerg Exp $ + +--- libbase/accumulator.h.orig 2015-09-17 11:20:41.000000000 +0000 ++++ libbase/accumulator.h +@@ -60,6 +60,7 @@ public: + /// There are no tokens for an accumulator_type + virtual unsigned min_tokens() const { return 0; } + virtual unsigned max_tokens() const { return 0; } ++ virtual bool adjacent_tokens_only() const { return true; } + + /// Accumulating from different sources is silly. + virtual bool is_composing() const { return false; } |