diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2018-04-18 17:48:14 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2018-04-18 17:48:14 +0000 |
commit | 17822792ad30b9b19011e88c46c54185c9f3190a (patch) | |
tree | 3b3dcf8f03745e96f7c4b33387e3c7f18ed9cc58 /devel/boost-libs | |
parent | 92f200418a7bde7690131c9bcd6496d8d07d0e01 (diff) | |
download | ports-17822792ad30b9b19011e88c46c54185c9f3190a.tar.gz ports-17822792ad30b9b19011e88c46c54185c9f3190a.zip |
Notes
Diffstat (limited to 'devel/boost-libs')
-rw-r--r-- | devel/boost-libs/Makefile | 2 | ||||
-rw-r--r-- | devel/boost-libs/files/patch-boost_lockfree_spsc__queue.hpp | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/devel/boost-libs/Makefile b/devel/boost-libs/Makefile index 0759d751a416..89e22a965592 100644 --- a/devel/boost-libs/Makefile +++ b/devel/boost-libs/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= boost-libs -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= Free portable C++ libraries (without Boost.Python) diff --git a/devel/boost-libs/files/patch-boost_lockfree_spsc__queue.hpp b/devel/boost-libs/files/patch-boost_lockfree_spsc__queue.hpp new file mode 100644 index 000000000000..ccc225a8899e --- /dev/null +++ b/devel/boost-libs/files/patch-boost_lockfree_spsc__queue.hpp @@ -0,0 +1,12 @@ +https://github.com/boostorg/lockfree/commit/12726cda009a + +--- boost/lockfree/spsc_queue.hpp.orig 2018-04-11 13:49:04 UTC ++++ boost/lockfree/spsc_queue.hpp +@@ -17,6 +17,7 @@ + #include <boost/assert.hpp> + #include <boost/static_assert.hpp> + #include <boost/utility.hpp> ++#include <boost/next_prior.hpp> + #include <boost/utility/enable_if.hpp> + #include <boost/config.hpp> // for BOOST_LIKELY + |