Initialize for boost-base

This commit is contained in:
zyppe 2024-02-28 20:52:17 +08:00
commit c3969a1a6c
30 changed files with 4928 additions and 0 deletions

2
.boost-base.metadata Normal file
View file

@ -0,0 +1,2 @@
54950a14807fda3af0dc72d5180c4e33ac5a2e561de89fa782a247056cba9643 boost_1_56_pdf.tar.bz2
19663b3972f9993402c5db32b3180d6ad91a89fd5bfe844cf5b15f1993ba24ea boost_1_66_0.tar.bz2

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
boost_1_56_pdf.tar.bz2
boost_1_66_0.tar.bz2

4
README.boost-devel Normal file
View file

@ -0,0 +1,4 @@
boost-devel has been split up into individual packages for simpler
product management. Please stop depending explicitly on boost-devel
and depend on individual boost -devel packages

1
__init__.py Normal file
View file

@ -0,0 +1 @@
# placeholder

26
baselibs.conf Normal file
View file

@ -0,0 +1,26 @@
libboost_atomic1_66_0
libboost_container1_66_0
libboost_context1_66_0
libboost_coroutine1_66_0
libboost_date_time1_66_0
libboost_fiber1_66_0
libboost_filesystem1_66_0
libboost_graph1_66_0
libboost_graph_parallel1_66_0
libboost_iostreams1_66_0
libboost_locale1_66_0
libboost_math1_66_0
libboost_mpi1_66_0
libboost_test1_66_0
libboost_program_options1_66_0
libboost_python-py2_7-1_66_0
libboost_python-py3-1_66_0
libboost_random1_66_0
libboost_serialization1_66_0
libboost_signals1_66_0
libboost_stacktrace1_66_0
libboost_system1_66_0
libboost_thread1_66_0
libboost_type_erasure1_66_0
libboost_wave1_66_0
libboost_regex1_66_0

View file

@ -0,0 +1,87 @@
Index: boost_1_63_0/libs/python/test/exec.cpp
===================================================================
--- boost_1_63_0.orig/libs/python/test/exec.cpp
+++ boost_1_63_0/libs/python/test/exec.cpp
@@ -56,8 +56,24 @@ void eval_test()
BOOST_TEST(value == "ABCDEFG");
}
+struct PyCtx
+{
+ PyCtx() {
+ Py_Initialize();
+ }
+
+ ~PyCtx() {
+ // N.B. certain problems may arise when Py_Finalize is called when
+ // using Boost.Python. However in this test suite it all seems to
+ // work fine.
+ Py_Finalize();
+ }
+};
+
void exec_test()
{
+ PyCtx ctx;
+
// Retrieve the main module
python::object main = python::import("__main__");
@@ -138,6 +154,19 @@ void check_pyerr(bool pyerr_expected=fal
}
}
+template <class Cb>
+bool
+run_and_handle_exception(Cb cb, bool pyerr_expected = false)
+{
+ PyCtx ctx;
+ if (python::handle_exception(cb)) {
+ check_pyerr(pyerr_expected);
+ return true;
+ } else {
+ return false;
+ }
+}
+
int main(int argc, char **argv)
{
BOOST_TEST(argc == 2 || argc == 3);
@@ -156,29 +185,19 @@ int main(int argc, char **argv)
"builtin modules");
}
- // Initialize the interpreter
- Py_Initialize();
-
- if (python::handle_exception(eval_test)) {
+ // N.B. exec_test mustn't be called through run_and_handle_exception
+ // as it needs to handles the python context by itself.
+ if (run_and_handle_exception(eval_test)
+ || python::handle_exception(exec_test))
check_pyerr();
- }
- else if(python::handle_exception(exec_test)) {
- check_pyerr();
- }
- else if (python::handle_exception(boost::bind(exec_file_test, script))) {
- check_pyerr();
- }
-
- if (python::handle_exception(exec_test_error))
- {
- check_pyerr(/*pyerr_expected*/ true);
- }
else
- {
+ run_and_handle_exception(boost::bind(exec_file_test, script));
+
+ if (!run_and_handle_exception(exec_test_error, true))
BOOST_ERROR("Python exception expected, but not seen.");
- }
if (argc > 2) {
+ PyCtx ctx;
// The main purpose is to test compilation. Since this test generates
// a file and I (rwgk) am uncertain about the side-effects, run it only
// if explicitly requested.

View file

@ -0,0 +1,64 @@
Index: boost_1_65_0/tools/build/src/tools/python.jam
===================================================================
--- boost_1_65_0.orig/tools/build/src/tools/python.jam
+++ boost_1_65_0/tools/build/src/tools/python.jam
@@ -99,7 +99,7 @@ py3-version = ;
# using python : 2.3 : /usr/local/bin/python ;
#
rule init ( version ? : cmd-or-prefix ? : includes * : libraries ?
- : condition * : extension-suffix ? )
+ : condition * : extension-suffix ? : abi-letters ? )
{
project.push-current $(.project) ;
@@ -112,7 +112,7 @@ rule init ( version ? : cmd-or-prefix ?
}
}
- configure $(version) : $(cmd-or-prefix) : $(includes) : $(libraries) : $(condition) : $(extension-suffix) ;
+ configure $(version) : $(cmd-or-prefix) : $(includes) : $(libraries) : $(condition) : $(extension-suffix) : $(abi-letters) ;
project.pop-current ;
}
@@ -659,7 +659,7 @@ local rule system-library-dependencies (
# Declare a target to represent Python's library.
#
-local rule declare-libpython-target ( version ? : requirements * )
+local rule declare-libpython-target ( version ? : requirements * : abi-letters ? )
{
# Compute the representation of Python version in the name of Python's
# library file.
@@ -683,13 +683,13 @@ local rule declare-libpython-target ( ve
}
# Declare it.
- lib python.lib : : <name>python$(lib-version) $(requirements) ;
+ lib python.lib : : <name>python$(lib-version)$(abi-letters) $(requirements) ;
}
# Implementation of init.
local rule configure ( version ? : cmd-or-prefix ? : includes * : libraries ? :
- condition * : extension-suffix ? )
+ condition * : extension-suffix ? : abi-letters ? )
{
local prefix ;
local exec-prefix ;
@@ -705,6 +705,7 @@ local rule configure ( version ? : cmd-o
extension-suffix ?= _d ;
}
extension-suffix ?= "" ;
+ abi-letters ?= "" ;
local cmds-to-try ;
@@ -968,7 +969,7 @@ local rule configure ( version ? : cmd-o
}
else
{
- declare-libpython-target $(version) : $(target-requirements) ;
+ declare-libpython-target $(version) : $(target-requirements) : $(abi-letters) ;
# This is an evil hack. On, Windows, when Python is embedded, nothing
# seems to set up sys.path to include Python's standard library

View file

@ -0,0 +1,13 @@
Index: boost_1_57_0/tools/build/src/tools/python.jam
===================================================================
--- boost_1_57_0/tools/build/src/tools/python.jam (revision 50406)
+++ boost_1_57_0/tools/build/src/tools/python.jam (working copy)
@@ -994,7 +994,7 @@
else
{
alias python_for_extensions
- :
+ : python
: $(target-requirements)
:
: $(usage-requirements)

15
boost-aarch64-flags.patch Normal file
View file

@ -0,0 +1,15 @@
Index: boost_1_58_0/tools/build/src/tools/gcc.jam
===================================================================
--- boost_1_58_0.orig/tools/build/src/tools/gcc.jam
+++ boost_1_58_0/tools/build/src/tools/gcc.jam
@@ -457,10 +457,6 @@ rule setup-address-model ( targets * : s
{
option = -m32 ;
}
- else if $(model) = 64
- {
- option = -m64 ;
- }
}
# For darwin, the model can be 32_64. darwin.jam will handle that
# on its own.

View file

@ -0,0 +1,75 @@
diff -urEbwB boost_1_60_0.orig/libs/math/build/Jamfile.v2 boost_1_60_0/libs/math/build/Jamfile.v2
--- boost_1_60_0.orig/libs/math/build/Jamfile.v2 2015-12-23 17:26:17.352006018 +0100
+++ boost_1_60_0/libs/math/build/Jamfile.v2 2015-12-23 20:41:51.707246969 +0100
@@ -4,23 +4,17 @@
# http://www.boost.org/LICENSE_1_0.txt.
import testing ;
-import pch ;
project
: requirements
<toolset>intel-win:<cxxflags>-nologo
<toolset>intel-win:<linkflags>-nologo
- #<toolset>intel-linux:<pch>off
- <toolset>intel-darwin:<pch>off
- <toolset>msvc-7.1:<pch>off
- <toolset>gcc,<target-os>windows:<pch>off
#<toolset>gcc:<cxxflags>-fvisibility=hidden
<toolset>intel-linux:<cxxflags>-fvisibility=hidden
#<toolset>sun:<cxxflags>-xldscope=hidden
[ check-target-builds ../config//has_gcc_visibility "gcc visibility" : <toolset>gcc:<cxxflags>-fvisibility=hidden : ]
;
-cpp-pch pch : ../src/tr1/pch.hpp : <include>../src/tr1 <link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1 ;
C99_SOURCES = acosh
asinh
@@ -80,19 +74,19 @@
explicit long_double_check ;
# Library targets
-lib boost_math_tr1 : ../src/tr1/$(TR1_SOURCES).cpp pch
+lib boost_math_tr1 : ../src/tr1/$(TR1_SOURCES).cpp
:
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
<include>../src/tr1
;
-lib boost_math_tr1f : ../src/tr1/$(TR1_SOURCES)f.cpp pch
+lib boost_math_tr1f : ../src/tr1/$(TR1_SOURCES)f.cpp
:
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
<include>../src/tr1
;
-lib boost_math_tr1l : ../src/tr1/$(TR1_SOURCES)l.cpp pch
+lib boost_math_tr1l : ../src/tr1/$(TR1_SOURCES)l.cpp
:
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
<dependency>../config//has_long_double_support
@@ -100,19 +94,19 @@
[ check-target-builds ../config//has_long_double_support "long double support" : : <build>no ]
;
-lib boost_math_c99 : ../src/tr1/$(C99_SOURCES).cpp pch
+lib boost_math_c99 : ../src/tr1/$(C99_SOURCES).cpp
:
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
<include>../src/tr1
;
-lib boost_math_c99f : ../src/tr1/$(C99_SOURCES)f.cpp pch
+lib boost_math_c99f : ../src/tr1/$(C99_SOURCES)f.cpp
:
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
<include>../src/tr1
;
-lib boost_math_c99l : ../src/tr1/$(C99_SOURCES)l.cpp pch
+lib boost_math_c99l : ../src/tr1/$(C99_SOURCES)l.cpp
:
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
<dependency>../config//has_long_double_support
Only in boost_1_60_0/libs/math/build: Jamfile.v2.orig
Only in boost_1_60_0/libs/math/build: Jamfile.v2.rej

View file

@ -0,0 +1,11 @@
--- boost/iostreams/filter/regex.hpp
+++ boost/iostreams/filter/regex.hpp
@@ -58,7 +58,7 @@
return;
iterator first(&src[0], &src[0] + src.size(), re_, flags_);
iterator last;
- const Ch* suffix = 0;
+ const Ch* suffix = &src[0];
for (; first != last; ++first) {
dest.insert( dest.end(),
first->prefix().first,

144
boost-no_type_punning.patch Normal file
View file

@ -0,0 +1,144 @@
Index: libs/python/src/dict.cpp
===================================================================
--- libs/python/src/dict.cpp.orig 2009-10-14 00:37:59.000000000 +0200
+++ libs/python/src/dict.cpp 2012-03-13 17:20:34.286172759 +0100
@@ -28,9 +28,9 @@ namespace
detail::new_reference dict_base::call(object const& arg_)
{
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyDict_Type };
return (detail::new_reference)PyObject_CallFunction(
- (PyObject*)&PyDict_Type, const_cast<char*>("(O)"),
- arg_.ptr());
+ pun.pop, const_cast<char*>("(O)"), arg_.ptr());
}
dict_base::dict_base()
Index: libs/python/src/list.cpp
===================================================================
--- libs/python/src/list.cpp.orig 2009-10-14 00:37:59.000000000 +0200
+++ libs/python/src/list.cpp 2012-03-13 17:20:34.286172759 +0100
@@ -10,11 +10,11 @@ namespace boost { namespace python { nam
detail::new_non_null_reference list_base::call(object const& arg_)
{
+ union{ PyTypeObject *ptop; PyObject *pop; }pun = { &PyList_Type };
return (detail::new_non_null_reference)
(expect_non_null)(
PyObject_CallFunction(
- (PyObject*)&PyList_Type, const_cast<char*>("(O)"),
- arg_.ptr()));
+ pun.pop, const_cast<char*>("(O)"), arg_.ptr()));
}
list_base::list_base()
Index: libs/python/src/long.cpp
===================================================================
--- libs/python/src/long.cpp.orig 2009-08-17 23:01:18.000000000 +0200
+++ libs/python/src/long.cpp 2012-03-13 17:20:34.287172735 +0100
@@ -8,16 +8,16 @@ namespace boost { namespace python { nam
new_non_null_reference long_base::call(object const& arg_)
{
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyLong_Type };
return (detail::new_non_null_reference)PyObject_CallFunction(
- (PyObject*)&PyLong_Type, const_cast<char*>("(O)"),
- arg_.ptr());
+ pun.pop, const_cast<char*>("(O)"), arg_.ptr());
}
new_non_null_reference long_base::call(object const& arg_, object const& base)
{
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyLong_Type };
return (detail::new_non_null_reference)PyObject_CallFunction(
- (PyObject*)&PyLong_Type, const_cast<char*>("(OO)"),
- arg_.ptr(), base.ptr());
+ pun.pop, const_cast<char*>("(OO)"), arg_.ptr(), base.ptr());
}
long_base::long_base()
@@ -25,7 +25,12 @@ long_base::long_base()
detail::new_reference(
PyObject_CallFunction((PyObject*)&PyLong_Type, const_cast<char*>("()")))
)
-{}
+{
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyLong_Type };
+ object(detail::new_reference(
+ PyObject_CallFunction(pun.pop, const_cast<char*>("()"))));
+}
+
long_base::long_base(object_cref arg)
: object(long_base::call(arg))
Index: libs/python/src/object/class.cpp
===================================================================
--- libs/python/src/object/class.cpp.orig 2011-06-07 06:15:33.000000000 +0200
+++ libs/python/src/object/class.cpp 2012-03-13 17:20:34.287172735 +0100
@@ -616,9 +616,11 @@ namespace objects
void class_base::add_property(
char const* name, object const& fget, char const* docstr)
{
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyProperty_Type };
+
object property(
(python::detail::new_reference)
- PyObject_CallFunction((PyObject*)&PyProperty_Type, const_cast<char*>("Osss"), fget.ptr(), 0, 0, docstr));
+ PyObject_CallFunction(pun.pop, const_cast<char*>("Osss"), fget.ptr(), 0, 0, docstr));
this->setattr(name, property);
}
@@ -626,9 +628,11 @@ namespace objects
void class_base::add_property(
char const* name, object const& fget, object const& fset, char const* docstr)
{
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyProperty_Type };
+
object property(
(python::detail::new_reference)
- PyObject_CallFunction((PyObject*)&PyProperty_Type, const_cast<char*>("OOss"), fget.ptr(), fset.ptr(), 0, docstr));
+ PyObject_CallFunction(pun.pop, const_cast<char*>("OOss"), fget.ptr(), fset.ptr(), 0, docstr));
this->setattr(name, property);
}
Index: libs/python/src/str.cpp
===================================================================
--- libs/python/src/str.cpp.orig 2009-10-14 00:37:59.000000000 +0200
+++ libs/python/src/str.cpp 2012-03-13 17:20:34.287172735 +0100
@@ -9,14 +9,14 @@ namespace boost { namespace python { nam
detail::new_reference str_base::call(object const& arg_)
{
- return (detail::new_reference)PyObject_CallFunction(
#if PY_VERSION_HEX >= 0x03000000
- (PyObject*)&PyUnicode_Type,
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyUnicode_Type };
#else
- (PyObject*)&PyString_Type,
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyString_Type };
#endif
- const_cast<char*>("(O)"),
- arg_.ptr());
+
+ return (detail::new_reference)PyObject_CallFunction(
+ pun.pop, const_cast<char*>("(O)"), arg_.ptr());
}
str_base::str_base()
Index: libs/python/src/tuple.cpp
===================================================================
--- libs/python/src/tuple.cpp.orig 2009-08-17 23:01:18.000000000 +0200
+++ libs/python/src/tuple.cpp 2012-03-13 17:20:34.287172735 +0100
@@ -8,9 +8,10 @@ namespace boost { namespace python { nam
detail::new_reference tuple_base::call(object const& arg_)
{
+ union { PyTypeObject *ptop; PyObject *pop; }pun = { &PyTuple_Type };
+
return (detail::new_reference)PyObject_CallFunction(
- (PyObject*)&PyTuple_Type, const_cast<char*>("(O)"),
- arg_.ptr());
+ pun.pop, const_cast<char*>("(O)"), arg_.ptr());
}
tuple_base::tuple_base()

View file

@ -0,0 +1,36 @@
Upstream URL: https://svn.boost.org/trac/boost/ticket/6701
Check that request size doesn't overflow.
Index: boost/pool/pool.hpp
===================================================================
--- boost/pool/pool.hpp.orig 2007-11-25 19:07:19.000000000 +0100
+++ boost/pool/pool.hpp 2012-06-22 13:03:49.422438613 +0200
@@ -10,6 +10,8 @@
#define BOOST_POOL_HPP
#include <boost/config.hpp> // for workarounds
+// std::numeric_limits
+#include <boost/limits.hpp>
// std::less, std::less_equal, std::greater
#include <functional>
@@ -793,6 +793,9 @@ void * pool<UserAllocator>::ordered_mall
//! \returns Address of chunk n if allocated ok.
//! \returns 0 if not enough memory for n chunks.
+ if (requested_size && (n > (std::numeric_limits<size_type>::max)() / requested_size))
+ return 0;
+
const size_type partition_size = alloc_size();
const size_type total_req_size = n * requested_size;
const size_type num_chunks = total_req_size / partition_size +
@@ -975,6 +979,8 @@
{
if(max_alloc_size && (n > max_alloc_size))
return 0;
+ if(chunk_size && (n > (std::numeric_limits<size_type>::max)() / chunk_size))
+ return 0;
void* ret = (user_allocator::malloc)(chunk_size * n);
used_list.insert(ret);
return ret;

14
boost-rpmlintrc Normal file
View file

@ -0,0 +1,14 @@
# This line is mandatory to access the configuration functions
from Config import *
addFilter("boost.* shlib-policy-nonversioned-dir")
addFilter("boost.* shlib-policy-missing-suffix")
addFilter("boost-doc.* devel-dependency")
addFilter("boost.* rpm-buildroot-usage")
addFilter("boost.* explicit-lib-dependency")
addFilter("boost.* filename-too-long-for-joliet")
addFilter("boost.* no-binary")
addFilter("boost.* static-library-without-debuginfo")
addFilter("boost.* obsolete-suse-version-check")
addFilter("boost.* shlib-unversioned-lib")
addFilter("boost.* no-dependency-on")

View file

@ -0,0 +1,51 @@
Index: tools/build/src/tools/gcc.jam
===================================================================
--- tools/build/src/tools/gcc.jam.orig
+++ tools/build/src/tools/gcc.jam
@@ -603,7 +603,7 @@ rule compile.fortran ( targets * : sourc
actions compile.c++ bind PCH_FILE
{
- "$(CONFIG_COMMAND)" $(LANG) -ftemplate-depth-$(TEMPLATE_DEPTH) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" -c -o "$(<:W)" "$(>:W)"
+ "$(CONFIG_COMMAND)" $(LANG) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" -c -o "$(<:W)" "$(>:W)"
}
actions compile.c bind PCH_FILE
@@ -613,7 +613,7 @@ actions compile.c bind PCH_FILE
actions compile.c++.preprocess bind PCH_FILE
{
- "$(CONFIG_COMMAND)" $(LANG) -ftemplate-depth-$(TEMPLATE_DEPTH) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" "$(>:W)" -E >"$(<:W)"
+ "$(CONFIG_COMMAND)" $(LANG) $(OPTIONS) $(USER_OPTIONS) -D$(DEFINES) -I"$(PCH_FILE:D)" -I"$(INCLUDES)" "$(>:W)" -E >"$(<:W)"
}
actions compile.c.preprocess bind PCH_FILE
@@ -755,17 +755,17 @@ actions compile.c.pch
###
# Declare flags and action for compilation.
-toolset.flags gcc.compile OPTIONS <optimization>off : -O0 ;
-toolset.flags gcc.compile OPTIONS <optimization>speed : -O3 ;
-toolset.flags gcc.compile OPTIONS <optimization>space : -Os ;
-
-toolset.flags gcc.compile OPTIONS <inlining>off : -fno-inline ;
-toolset.flags gcc.compile OPTIONS <inlining>on : -Wno-inline ;
-toolset.flags gcc.compile OPTIONS <inlining>full : -finline-functions -Wno-inline ;
-
-toolset.flags gcc.compile OPTIONS <warnings>off : -w ;
-toolset.flags gcc.compile OPTIONS <warnings>on : -Wall ;
-toolset.flags gcc.compile OPTIONS <warnings>all : -Wall -pedantic ;
+toolset.flags gcc.compile OPTIONS <optimization>off : ;
+toolset.flags gcc.compile OPTIONS <optimization>speed : ;
+toolset.flags gcc.compile OPTIONS <optimization>space : ;
+
+toolset.flags gcc.compile OPTIONS <inlining>off : ;
+toolset.flags gcc.compile OPTIONS <inlining>on : ;
+toolset.flags gcc.compile OPTIONS <inlining>full : ;
+
+toolset.flags gcc.compile OPTIONS <warnings>off : ;
+toolset.flags gcc.compile OPTIONS <warnings>on : ;
+toolset.flags gcc.compile OPTIONS <warnings>all : ;
toolset.flags gcc.compile OPTIONS <warnings-as-errors>on : -Werror ;
toolset.flags gcc.compile OPTIONS <debug-symbols>on : -g ;

View file

@ -0,0 +1,12 @@
Index: libs/python/build/Jamfile
===================================================================
--- libs/python/build/Jamfile.orig
+++ libs/python/build/Jamfile
@@ -110,6 +110,7 @@ rule lib_boost_python ( version )
-<tag>@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag
<tag>@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).python-tag
+ <cxxflags>-fno-strict-aliasing
<conditional>@python.require-py

13
boost-thread.patch Normal file
View file

@ -0,0 +1,13 @@
Index: boost_1_58_0/boost/config/compiler/gcc.hpp
===================================================================
--- boost_1_58_0.orig/boost/config/compiler/gcc.hpp
+++ boost_1_58_0/boost/config/compiler/gcc.hpp
@@ -73,7 +73,7 @@
// those platforms where we can know for sure). It will get turned off again
// later if no threading API is detected.
//
-#if !defined(__MINGW32__) && !defined(linux) && !defined(__linux) && !defined(__linux__)
+#if !defined(__MINGW32__)
# define BOOST_HAS_THREADS
#endif

View file

@ -0,0 +1,46 @@
Index: boost_1_56_0/tools/build/src/tools/boostbook.jam
===================================================================
--- boost_1_56_0.orig/tools/build/src/tools/boostbook.jam
+++ boost_1_56_0/tools/build/src/tools/boostbook.jam
@@ -548,40 +548,7 @@ rule generate-xml-catalog ( target : sou
" <rewriteURI uriStartString=\"http://www.boost.org/tools/boostbook/dtd/\" rewritePrefix=\"file://$(boostbook-dtd-dir)/\"/>"
: true ;
- local docbook-xsl-dir = [ boostbook.docbook-xsl-dir ] ;
- if ! $(docbook-xsl-dir)
- {
- ECHO "BoostBook warning: no DocBook XSL directory specified." ;
- ECHO " If you have the DocBook XSL stylesheets installed, please " ;
- ECHO " set DOCBOOK_XSL_DIR to the stylesheet directory on either " ;
- ECHO " the command line (via -sDOCBOOK_XSL_DIR=...) or in a " ;
- ECHO " Boost.Jam configuration file. The DocBook XSL stylesheets " ;
- ECHO " are available here: http://docbook.sourceforge.net/ " ;
- ECHO " Stylesheets will be downloaded on-the-fly (very slow!) " ;
- }
- else
- {
- docbook-xsl-dir = [ format-catalog-path $(docbook-xsl-dir) ] ;
- print.text " <rewriteURI uriStartString=\"http://docbook.sourceforge.net/release/xsl/current/\" rewritePrefix=\"file://$(docbook-xsl-dir)/\"/>" ;
- }
-
- local docbook-dtd-dir = [ boostbook.docbook-dtd-dir ] ;
- if ! $(docbook-dtd-dir)
- {
- ECHO "BoostBook warning: no DocBook DTD directory specified." ;
- ECHO " If you have the DocBook DTD installed, please set " ;
- ECHO " DOCBOOK_DTD_DIR to the DTD directory on either " ;
- ECHO " the command line (via -sDOCBOOK_DTD_DIR=...) or in a " ;
- ECHO " Boost.Jam configuration file. The DocBook DTD is available " ;
- ECHO " here: http://www.oasis-open.org/docbook/xml/4.2/index.shtml" ;
- ECHO " The DTD will be downloaded on-the-fly (very slow!) " ;
- }
- else
- {
- docbook-dtd-dir = [ format-catalog-path $(docbook-dtd-dir) ] ;
- print.text " <rewriteURI uriStartString=\"http://www.oasis-open.org/docbook/xml/4.2/\" rewritePrefix=\"file://$(docbook-dtd-dir)/\"/>" ;
- }
-
+ print.text " <nextCatalog catalog=\"file:///etc/xml/catalog\"/> " ;
print.text "</catalog>" ;
}

110
boost-visibility.patch Normal file
View file

@ -0,0 +1,110 @@
---
boost/archive/impl/basic_xml_grammar.hpp | 16 ++++++++--------
libs/serialization/src/basic_xml_grammar.ipp | 14 +++++++-------
2 files changed, 15 insertions(+), 15 deletions(-)
Index: boost/archive/impl/basic_xml_grammar.hpp
===================================================================
--- boost/archive/impl/basic_xml_grammar.hpp.orig
+++ boost/archive/impl/basic_xml_grammar.hpp
@@ -135,7 +135,7 @@ private:
Sch,
NameChar;
- void init_chset();
+ BOOST_SYMBOL_VISIBLE void init_chset();
bool my_parse(
IStream & is,
@@ -143,7 +143,7 @@ private:
const CharType delimiter = L'>'
) const ;
public:
- struct return_values {
+ BOOST_SYMBOL_VISIBLE struct return_values {
StringType object_name;
StringType contents;
//class_id_type class_id;
@@ -159,12 +159,12 @@ public:
tracking_level(false)
{}
} rv;
- bool parse_start_tag(IStream & is) /*const*/;
- bool parse_end_tag(IStream & is) const;
- bool parse_string(IStream & is, StringType & s) /*const*/;
- void init(IStream & is);
- bool windup(IStream & is);
- basic_xml_grammar();
+ BOOST_SYMBOL_VISIBLE bool parse_start_tag(IStream & is) /*const*/;
+ BOOST_SYMBOL_VISIBLE bool parse_end_tag(IStream & is) const;
+ BOOST_SYMBOL_VISIBLE bool parse_string(IStream & is, StringType & s) /*const*/;
+ BOOST_SYMBOL_VISIBLE void init(IStream & is);
+ BOOST_SYMBOL_VISIBLE bool windup(IStream & is);
+ BOOST_SYMBOL_VISIBLE basic_xml_grammar();
};
} // namespace archive
Index: libs/serialization/src/basic_xml_grammar.ipp
===================================================================
--- libs/serialization/src/basic_xml_grammar.ipp.orig
+++ libs/serialization/src/basic_xml_grammar.ipp
@@ -173,7 +173,7 @@ struct append_lit {
} // namespace anonymous
template<class CharType>
-bool basic_xml_grammar<CharType>::my_parse(
+BOOST_SYMBOL_VISIBLE bool basic_xml_grammar<CharType>::my_parse(
typename basic_xml_grammar<CharType>::IStream & is,
const rule_t & rule_,
CharType delimiter
@@ -209,7 +209,7 @@ bool basic_xml_grammar<CharType>::my_par
}
template<class CharType>
-bool basic_xml_grammar<CharType>::parse_start_tag(
+BOOST_SYMBOL_VISIBLE bool basic_xml_grammar<CharType>::parse_start_tag(
typename basic_xml_grammar<CharType>::IStream & is
){
rv.class_name.resize(0);
@@ -217,12 +217,12 @@ bool basic_xml_grammar<CharType>::parse_
}
template<class CharType>
-bool basic_xml_grammar<CharType>::parse_end_tag(IStream & is) const {
+BOOST_SYMBOL_VISIBLE bool basic_xml_grammar<CharType>::parse_end_tag(IStream & is) const {
return my_parse(is, ETag);
}
template<class CharType>
-bool basic_xml_grammar<CharType>::parse_string(IStream & is, StringType & s){
+BOOST_SYMBOL_VISIBLE bool basic_xml_grammar<CharType>::parse_string(IStream & is, StringType & s){
rv.contents.resize(0);
bool result = my_parse(is, content, '<');
// note: unget caused a problem with dinkumware. replace with
@@ -235,7 +235,7 @@ bool basic_xml_grammar<CharType>::parse_
}
template<class CharType>
-basic_xml_grammar<CharType>::basic_xml_grammar(){
+BOOST_SYMBOL_VISIBLE basic_xml_grammar<CharType>::basic_xml_grammar(){
init_chset();
S =
@@ -432,7 +432,7 @@ basic_xml_grammar<CharType>::basic_xml_g
}
template<class CharType>
-void basic_xml_grammar<CharType>::init(IStream & is){
+BOOST_SYMBOL_VISIBLE void basic_xml_grammar<CharType>::init(IStream & is){
init_chset();
if(! my_parse(is, XMLDecl))
boost::serialization::throw_exception(
@@ -453,7 +453,7 @@ void basic_xml_grammar<CharType>::init(I
}
template<class CharType>
-bool basic_xml_grammar<CharType>::windup(IStream & is) {
+BOOST_SYMBOL_VISIBLE bool basic_xml_grammar<CharType>::windup(IStream & is) {
return my_parse(is, ETag);
}

1332
boost.changes Normal file

File diff suppressed because it is too large Load diff

1919
boost.spec Normal file

File diff suppressed because it is too large Load diff

115
dynamic_linking.patch Normal file
View file

@ -0,0 +1,115 @@
Index: boost_1_63_0/libs/test/build/Jamfile.v2
===================================================================
--- boost_1_63_0.orig/libs/test/build/Jamfile.v2
+++ boost_1_63_0/libs/test/build/Jamfile.v2
@@ -93,7 +93,7 @@ lib boost_test_exec_monitor
: # sources
$(TEST_EXEC_MON_SOURCES).cpp
: # requirements
- <link>static
+ # <link>static
: # default build
: # usage-requirements
<link>shared:<define>BOOST_TEST_DYN_LINK=1
Index: boost_1_63_0/libs/exception/build/Jamfile.v2
===================================================================
--- boost_1_63_0.orig/libs/exception/build/Jamfile.v2
+++ boost_1_63_0/libs/exception/build/Jamfile.v2
@@ -7,7 +7,7 @@
project boost/exception
: source-location ../src
- : requirements <link>static
+ : # requirements <link>static
;
lib boost_exception : clone_current_exception_non_intrusive.cpp ;
Index: boost_1_63_0/libs/chrono/build/Jamfile.v2
===================================================================
--- boost_1_63_0.orig/libs/chrono/build/Jamfile.v2
+++ boost_1_63_0/libs/chrono/build/Jamfile.v2
@@ -99,7 +99,7 @@ project boost/chrono
<define>BOOST_SYSTEM_NO_DEPRECATED
<link>shared:<define>BOOST_CHRONO_DYN_LINK=1
- <link>static:<define>BOOST_CHRONO_STATIC_LINK=1
+ # <link>static:<define>BOOST_CHRONO_STATIC_LINK=1
<toolset>gcc-3.4.4:<linkflags>--enable-auto-import
<toolset>gcc-4.3.4:<linkflags>--enable-auto-import
<toolset>gcc-4.4.0,<target-os>windows:<linkflags>--enable-auto-import
@@ -113,6 +113,6 @@ lib boost_chrono
: $(SOURCES).cpp
:
<link>shared:<define>BOOST_ALL_DYN_LINK=1 # tell source we're building dll's
- <link>static:<define>BOOST_All_STATIC_LINK=1 # tell source we're building static lib's
+ # <link>static:<define>BOOST_All_STATIC_LINK=1 # tell source we're building static lib's
;
Index: boost_1_63_0/libs/system/build/Jamfile.v2
===================================================================
--- boost_1_63_0.orig/libs/system/build/Jamfile.v2
+++ boost_1_63_0/libs/system/build/Jamfile.v2
@@ -11,7 +11,7 @@ project boost/system
: source-location ../src
: usage-requirements # pass these requirement to dependents (i.e. users)
<link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
- <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
+# <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
;
SOURCES = error_code ;
@@ -19,7 +19,7 @@ SOURCES = error_code ;
lib boost_system
: $(SOURCES).cpp
: <link>shared:<define>BOOST_SYSTEM_DYN_LINK=1
- <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
+# <link>static:<define>BOOST_SYSTEM_STATIC_LINK=1
;
-boost-install boost_system ;
\ No newline at end of file
+boost-install boost_system ;
Index: boost_1_63_0/libs/timer/build/Jamfile.v2
===================================================================
--- boost_1_63_0.orig/libs/timer/build/Jamfile.v2
+++ boost_1_63_0/libs/timer/build/Jamfile.v2
@@ -14,7 +14,7 @@ project boost/timer
<library>/boost/system//boost_system
: usage-requirements # pass these requirement to dependants (i.e. users)
<link>shared:<define>BOOST_TIMER_DYN_LINK=1
- <link>static:<define>BOOST_TIMER_STATIC_LINK=1
+# <link>static:<define>BOOST_TIMER_STATIC_LINK=1
;
SOURCES = auto_timers_construction cpu_timer ;
@@ -22,7 +22,7 @@ SOURCES = auto_timers_construction cpu_t
lib boost_timer
: $(SOURCES).cpp
: <link>shared:<define>BOOST_TIMER_DYN_LINK=1
- <link>static:<define>BOOST_TIMER_STATIC_LINK=1
+# <link>static:<define>BOOST_TIMER_STATIC_LINK=1
;
boost-install boost_timer ;
Index: boost_1_63_0/libs/filesystem/build/Jamfile.v2
===================================================================
--- boost_1_63_0.orig/libs/filesystem/build/Jamfile.v2
+++ boost_1_63_0/libs/filesystem/build/Jamfile.v2
@@ -11,7 +11,7 @@ project boost/filesystem
: source-location ../src
: usage-requirements # pass these requirement to dependents (i.e. users)
<link>shared:<define>BOOST_FILESYSTEM_DYN_LINK=1
- <link>static:<define>BOOST_FILESYSTEM_STATIC_LINK=1
+# <link>static:<define>BOOST_FILESYSTEM_STATIC_LINK=1
;
SOURCES =
@@ -28,7 +28,7 @@ SOURCES =
lib boost_filesystem
: $(SOURCES).cpp ../../system/build//boost_system
: <link>shared:<define>BOOST_FILESYSTEM_DYN_LINK=1
- <link>static:<define>BOOST_FILESYSTEM_STATIC_LINK=1
+# <link>static:<define>BOOST_FILESYSTEM_STATIC_LINK=1
:
: # Boost.Filesystem uses some of Boost.System functions in inlined/templated
# functions, so clients that use Boost.Filesystem will have direct references

1
exception.objdump Normal file
View file

@ -0,0 +1 @@
boost::exception_detail::clone_current_exception_non_intrusive(boost::exception_detail::clone_base const*&)

470
existing_extra_docs Normal file
View file

@ -0,0 +1,470 @@
libs/algorithm/minmax/example/minmax_ex.cpp
libs/algorithm/minmax/example/minmax_timer.cpp
libs/assign/test/array.cpp
libs/assign/test/list_inserter.cpp
libs/assign/test/list_of.cpp
libs/assign/test/list_of_workaround.cpp
libs/assign/test/std.cpp
libs/bind/bind_as_compose.cpp
libs/bind/bind_visitor.cpp
libs/bind/test/bind_fastcall_mf_test.cpp
libs/bind/test/bind_fastcall_test.cpp
libs/bind/test/bind_stdcall_mf_test.cpp
libs/bind/test/bind_stdcall_test.cpp
libs/bind/test/bind_test.cpp
libs/bind/test/mem_fn_derived_test.cpp
libs/bind/test/mem_fn_fastcall_test.cpp
libs/bind/test/mem_fn_stdcall_test.cpp
libs/bind/test/mem_fn_test.cpp
libs/bind/test/mem_fn_void_test.cpp
libs/compatibility/generate_cpp_c_headers.py
libs/concept_check/bad_error_eg.cpp
libs/concept_check/stl_concept_check.cpp
libs/concept_check/stl_concept_covering.cpp
libs/config/test/limits_test.cpp
libs/config/tools/configure.in
libs/conversion/cast_test.cpp
libs/conversion/lexical_cast_test.cpp
libs/crc/crc_example.cpp
libs/filesystem/build/Jamfile.v2
libs/filesystem/example/simple_ls.cpp
libs/filesystem/test/fstream_test.cpp
libs/filesystem/test/operations_test.cpp
libs/filesystem/test/path_test.cpp
libs/filesystem/test/wide_test.cpp
libs/format/example/sample_advanced.cpp
libs/format/example/sample_formats.cpp
libs/format/example/sample_new_features.cpp
libs/format/example/sample_userType.cpp
libs/functional/hash/examples/books.cpp
libs/functional/hash/examples/point.cpp
libs/functional/hash/examples/portable.cpp
libs/function/test/allocator_test.cpp
libs/function/test/contains_test.cpp
libs/function/test/function_30.cpp
libs/function/test/function_arith_cxx98.cpp
libs/function/test/function_arith_portable.cpp
libs/function/test/function_n_test.cpp
libs/function/test/function_ref_cxx98.cpp
libs/function/test/function_ref_portable.cpp
libs/function/test/function_test.cpp
libs/function/test/function_test_fail1.cpp
libs/function/test/function_test_fail2.cpp
libs/function/test/lambda_test.cpp
libs/function/test/mem_fun_cxx98.cpp
libs/function/test/mem_fun_portable.cpp
libs/function/test/stateless_test.cpp
libs/function/test/std_bind_cxx98.cpp
libs/function/test/std_bind_portable.cpp
libs/function/test/sum_avg_cxx98.cpp
libs/function/test/sum_avg_portable.cpp
libs/graph/doc/iscope99.pdf
libs/graph/doc/isomorphism-impl.pdf
libs/graph/example/bfs.cpp
libs/graph/example/bfs-example2.cpp
libs/graph/example/bfs-example.cpp
libs/graph/example/biconnected_components.cpp
libs/graph/example/city_visitor.cpp
libs/graph/example/connected_components.cpp
libs/graph/example/csr-example.cpp
libs/graph/example/cuthill_mckee_ordering.cpp
libs/graph/example/dave.cpp
libs/graph/example/dfs-example.cpp
libs/graph/example/dfs_parenthesis.cpp
libs/graph/example/dijkstra-example.cpp
libs/graph/example/family-tree-eg.cpp
libs/graph/example/file_dependencies.cpp
libs/graph/example/fr_layout.cpp
libs/graph/example/girth.cpp
libs/graph/example/graphviz.cpp
libs/graph/example/incremental_components.cpp
libs/graph/example/isomorphism.cpp
libs/graph/example/johnson-eg.cpp
libs/graph/example/kevin-bacon.cpp
libs/graph/example/king_ordering.cpp
libs/graph/example/kruskal-example.cpp
libs/graph/example/matching_example.cpp
libs/graph/example/max_flow.cpp
libs/graph/example/miles_span.cpp
libs/graph/example/minimum_degree_ordering.cpp
libs/graph/example/ordered_out_edges.cpp
libs/graph/example/quick_tour.cpp
libs/graph/example/reverse-graph-eg.cpp
libs/graph/example/roget_components.cpp
libs/graph/example/sloan_ordering.cpp
libs/graph/example/strong_components.cpp
libs/graph/example/transitive_closure.cpp
libs/graph/example/transpose-example.cpp
libs/graph/example/undirected.cpp
libs/graph/example/undirected_dfs.cpp
libs/graph/test/dominator_tree_test.cpp
libs/graph/test/graph.cpp
libs/integer/test/integer_mask_test.cpp
libs/integer/test/static_log2_test.cpp
libs/integer/test/static_min_max_test.cpp
libs/iostreams/doc/tree/tree.js
libs/iostreams/example/container_device.hpp
libs/iostreams/example/dictionary_filter.hpp
libs/iostreams/example/finite_state_filter.hpp
libs/iostreams/example/line_wrapping_filter.hpp
libs/iostreams/example/shell_comments_filter.hpp
libs/iostreams/example/tab_expanding_filter.hpp
libs/iostreams/example/unix2dos_filter.hpp
libs/iostreams/src/bzip2.cpp
libs/iostreams/src/file_descriptor.cpp
libs/iostreams/src/mapped_file.cpp
libs/iostreams/src/zlib.cpp
libs/iostreams/test/bzip2_test.cpp
libs/iostreams/test/file_descriptor_test.cpp
libs/iostreams/test/finite_state_filter_test.cpp
libs/iostreams/test/mapped_file_test.cpp
libs/iostreams/test/seekable_file_test.cpp
libs/io/test/ios_state_test.cpp
libs/iterator/doc/BidirectionalTraversal.rst
libs/iterator/doc/counting_iterator.pdf
libs/iterator/doc/counting_iterator.rst
libs/iterator/doc/facade-and-adaptor.pdf
libs/iterator/doc/facade-and-adaptor.rst
libs/iterator/doc/filter_iterator.pdf
libs/iterator/doc/filter_iterator.rst
libs/iterator/doc/ForwardTraversal.rst
libs/iterator/doc/function_output_iterator.pdf
libs/iterator/doc/function_output_iterator.rst
libs/iterator/doc/IncrementableIterator.rst
libs/iterator/doc/index.rst
libs/iterator/doc/indirect_iterator.pdf
libs/iterator/doc/indirect_iterator.rst
libs/iterator/doc/iterator_adaptor.pdf
libs/iterator/doc/iterator_adaptor.rst
libs/iterator/doc/iterator_archetypes.pdf
libs/iterator/doc/iterator_archetypes.rst
libs/iterator/doc/iterator_concepts.pdf
libs/iterator/doc/iterator_concepts.rst
libs/iterator/doc/iterator_facade.pdf
libs/iterator/doc/iterator_facade.rst
libs/iterator/doc/iterator_traits.pdf
libs/iterator/doc/iterator_traits.rst
libs/iterator/doc/LvalueIterator.rst
libs/iterator/doc/new-iter-concepts.pdf
libs/iterator/doc/new-iter-concepts.rst
libs/iterator/doc/permutation_iterator.pdf
libs/iterator/doc/permutation_iterator.rst
libs/iterator/doc/pointee.pdf
libs/iterator/doc/pointee.rst
libs/iterator/doc/RandomAccessTraversal.rst
libs/iterator/doc/ReadableIterator.rst
libs/iterator/doc/reverse_iterator.pdf
libs/iterator/doc/reverse_iterator.rst
libs/iterator/doc/SinglePassIterator.rst
libs/iterator/doc/SwappableIterator.rst
libs/iterator/doc/transform_iterator.pdf
libs/iterator/doc/transform_iterator.rst
libs/iterator/doc/WritableIterator.rst
libs/iterator/doc/zip_iterator.pdf
libs/iterator/doc/zip_iterator.rst
libs/iterator/example/counting_iterator_example.cpp
libs/iterator/example/filter_iterator_example.cpp
libs/iterator/example/indirect_iterator_example.cpp
libs/iterator/example/node_iterator1.cpp
libs/iterator/example/node_iterator2.cpp
libs/iterator/example/node_iterator2.hpp
libs/iterator/example/node_iterator3.cpp
libs/iterator/example/permutation_iter_example.cpp
libs/iterator/example/reverse_iterator_example.cpp
libs/iterator/example/transform_iterator_example.cpp
libs/logic/test/tribool_io_test.cpp
libs/logic/test/tribool_rename_test.cpp
libs/logic/test/tribool_test.cpp
libs/math/octonion/graphics/octonion_blurb17.jpeg
libs/math/octonion/octonion_test.cpp
libs/math/octonion/output_more.txt
libs/math/octonion/output.txt
libs/math/quaternion/HSO3.hpp
libs/math/quaternion/HSO3SO4.cpp
libs/math/quaternion/HSO4.hpp
libs/math/quaternion/output_more.txt
libs/math/quaternion/output.txt
libs/math/quaternion/quaternion_test.cpp
libs/math/quaternion/TQE_EA.pdf
libs/math/quaternion/TQE.pdf
libs/math/special_functions/graphics/special_functions_blurb15.jpeg
libs/math/special_functions/graphics/special_functions_blurb17.jpeg
libs/math/special_functions/graphics/special_functions_blurb18.jpeg
libs/math/special_functions/graphics/special_functions_blurb1.jpeg
libs/math/special_functions/graphics/special_functions_blurb20.jpeg
libs/math/special_functions/graphics/special_functions_blurb22.jpeg
libs/math/special_functions/graphics/special_functions_blurb5.jpeg
libs/math/special_functions/graphics/special_functions_blurb6.jpeg
libs/math/special_functions/graphics/special_functions_blurb7.jpeg
libs/math/special_functions/output_more.txt
libs/math/special_functions/output.txt
libs/math/special_functions/special_functions_test.cpp
libs/math/test/common_factor_test.cpp
libs/math/test/log1p_expm1_test.cpp
libs/mpl/doc/refmanual.pdf
libs/mpl/example/fsm/player1.cpp
libs/multi_array/test/access.cpp
libs/multi_array/test/assign.cpp
libs/multi_array/test/assign_to_array.cpp
libs/multi_array/test/compare.cpp
libs/multi_array/test/concept_checks.cpp
libs/multi_array/test/constructors.cpp
libs/multi_array/test/fail_cbracket.cpp
libs/multi_array/test/fail_cdata.cpp
libs/multi_array/test/fail_citerator.cpp
libs/multi_array/test/fail_cparen.cpp
libs/multi_array/test/fail_criterator.cpp
libs/multi_array/test/fail_csubarray2.cpp
libs/multi_array/test/fail_csubarray3.cpp
libs/multi_array/test/fail_csubarray.cpp
libs/multi_array/test/fail_cview2.cpp
libs/multi_array/test/fail_cview3.cpp
libs/multi_array/test/fail_cview.cpp
libs/multi_array/test/fail_ref_cbracket.cpp
libs/multi_array/test/fail_ref_cdata.cpp
libs/multi_array/test/fail_ref_citerator.cpp
libs/multi_array/test/fail_ref_cparen.cpp
libs/multi_array/test/fail_ref_criterator.cpp
libs/multi_array/test/fail_ref_csubarray2.cpp
libs/multi_array/test/fail_ref_csubarray3.cpp
libs/multi_array/test/fail_ref_csubarray.cpp
libs/multi_array/test/fail_ref_cview2.cpp
libs/multi_array/test/fail_ref_cview3.cpp
libs/multi_array/test/fail_ref_cview.cpp
libs/multi_array/test/generative_tests.hpp
libs/multi_array/test/idxgen1.cpp
libs/multi_array/test/index_bases.cpp
libs/multi_array/test/iterators.cpp
libs/multi_array/test/range1.cpp
libs/multi_array/test/reshape.cpp
libs/multi_array/test/resize.cpp
libs/multi_array/test/slice.cpp
libs/multi_array/test/stl_interaction.cpp
libs/multi_array/test/storage_order.cpp
libs/multi_index/example/basic.cpp
libs/multi_index/example/bimap.cpp
libs/multi_index/example/complex_structs.cpp
libs/multi_index/example/composite_keys.cpp
libs/multi_index/example/hashed.cpp
libs/multi_index/example/non_default_ctor.cpp
libs/multi_index/example/random_access.cpp
libs/multi_index/example/rearrange.cpp
libs/multi_index/example/sequenced.cpp
libs/multi_index/example/serialization.cpp
libs/multi_index/perf/test_perf.cpp
libs/multi_index/test/test_basic.cpp
libs/multi_index/test/test_capacity.cpp
libs/multi_index/test/test_comparison.cpp
libs/multi_index/test/test_composite_key.cpp
libs/multi_index/test/test_conv_iterators.cpp
libs/multi_index/test/test_copy_assignment.cpp
libs/multi_index/test/test_hash_ops.cpp
libs/multi_index/test/test_iterators.cpp
libs/multi_index/test/test_key_extractors.cpp
libs/multi_index/test/test_list_ops.cpp
libs/multi_index/test/test_modifiers.cpp
libs/multi_index/test/test_mpl_ops.cpp
libs/multi_index/test/test_observers.cpp
libs/multi_index/test/test_projection.cpp
libs/multi_index/test/test_range.cpp
libs/multi_index/test/test_rearrange.cpp
libs/multi_index/test/test_safe_mode.cpp
libs/multi_index/test/test_serialization1.cpp
libs/multi_index/test/test_serialization2.cpp
libs/multi_index/test/test_set_ops.cpp
libs/multi_index/test/test_special_set_ops.cpp
libs/multi_index/test/test_update.cpp
libs/preprocessor/doc/examples/array_arithmetic.c
libs/preprocessor/doc/examples/catch_builtin.cpp
libs/preprocessor/doc/examples/delay.c
libs/preprocessor/doc/examples/duffs_device.c
libs/preprocessor/doc/examples/is_integral.cpp
libs/preprocessor/doc/examples/linear_fib.c
libs/ptr_container/test/incomplete_type_test.cpp
libs/ptr_container/test/ptr_array.cpp
libs/ptr_container/test/simple_test.cpp
libs/ptr_container/test/tree_test.cpp
libs/ptr_container/test/view_example.cpp
libs/python/doc/building.rst
libs/python/doc/internals.rst
libs/python/doc/PyConDC_2003/bpl.pdf
libs/python/doc/v2/callbacks.txt
libs/python/example/quickstart/boost-build.jam
libs/python/example/quickstart/extending.cpp
libs/python/example/quickstart/Jamroot
libs/python/example/tutorial/Jamroot
libs/python/test/input_iterator.cpp
libs/python/test/iterator.cpp
libs/python/test/iterator.py
libs/python/test/map_indexing_suite.cpp
libs/python/test/map_indexing_suite.py
libs/python/test/pickle1.cpp
libs/python/test/pickle2.cpp
libs/python/test/pickle3.cpp
libs/python/test/pickle4.cpp
libs/python/test/vector_indexing_suite.cpp
libs/python/test/vector_indexing_suite.py
libs/random/nondet_random_speed.cpp
libs/random/random_demo.cpp
libs/random/random_speed.cpp
libs/random/random_test.cpp
libs/range/test/algorithm_example.cpp
libs/range/test/array.cpp
libs/range/test/iterator_pair.cpp
libs/range/test/iterator_range.cpp
libs/range/test/reversible_range.cpp
libs/range/test/std_container.cpp
libs/range/test/string.cpp
libs/range/test/sub_range.cpp
libs/regex/build/generic.mak
libs/regex/example/grep/grep.cpp
libs/regex/example/snippets/captures_example.cpp
libs/regex/example/snippets/credit_card_example.cpp
libs/regex/example/snippets/partial_regex_grep.cpp
libs/regex/example/snippets/partial_regex_match.cpp
libs/regex/example/snippets/regex_grep_example_1.cpp
libs/regex/example/snippets/regex_grep_example_2.cpp
libs/regex/example/snippets/regex_grep_example_3.cpp
libs/regex/example/snippets/regex_grep_example_4.cpp
libs/regex/example/snippets/regex_iterator_example.cpp
libs/regex/example/snippets/regex_match_example.cpp
libs/regex/example/snippets/regex_merge_example.cpp
libs/regex/example/snippets/regex_replace_example.cpp
libs/regex/example/snippets/regex_search_example.cpp
libs/regex/example/snippets/regex_split_example_1.cpp
libs/regex/example/snippets/regex_split_example_2.cpp
libs/regex/example/snippets/regex_token_iterator_eg_1.cpp
libs/regex/example/snippets/regex_token_iterator_eg_2.cpp
libs/regex/example/timer/regex_timer.cpp
libs/regex/test/captures/captures_test.cpp
libs/regex/test/concepts/concept_check.cpp
libs/regex/test/pathology/bad_expression_test.cpp
libs/regex/test/pathology/recursion_test.cpp
libs/regex/test/regress/basic_tests.cpp
libs/regex/test/regress/main.cpp
libs/regex/test/regress/test_deprecated.cpp
libs/serialization/example/demo_auto_ptr.cpp
libs/serialization/example/demo.cpp
libs/serialization/example/demo_exception.cpp
libs/serialization/example/demo_fast_archive.cpp
libs/serialization/example/demofile.txt
libs/serialization/example/demo_output.txt
libs/serialization/example/demo_pimpl_A.cpp
libs/serialization/example/demo_pimpl.cpp
libs/serialization/example/demo_polymorphic_A.cpp
libs/serialization/example/demo_polymorphic_A.hpp
libs/serialization/example/demo_polymorphic.cpp
libs/serialization/example/demo_portable_archive.cpp
libs/serialization/example/demo_save.xml
libs/serialization/example/demo_shared_ptr.cpp
libs/serialization/example/demo_xml.cpp
libs/serialization/example/demo_xml.hpp
libs/serialization/example/demo_xml_load.cpp
libs/serialization/example/demo_xml_save.cpp
libs/serialization/test/test_delete_pointer.cpp
libs/serialization/test/test_diamond.cpp
libs/serialization/test/test_no_rtti.cpp
libs/signals/example/doc_view.cpp
libs/signals/test/dead_slot_test.cpp
libs/signals/test/deletion_test.cpp
libs/signals/test/ordering_test.cpp
libs/signals/test/signal_n_test.cpp
libs/signals/test/signal_test.cpp
libs/signals/test/trackable_test.cpp
libs/smart_ptr/example/scoped_ptr_example.cpp
libs/smart_ptr/example/scoped_ptr_example.hpp
libs/smart_ptr/example/scoped_ptr_example_test.cpp
libs/smart_ptr/example/shared_ptr_example2.cpp
libs/smart_ptr/example/shared_ptr_example2.hpp
libs/smart_ptr/example/shared_ptr_example2_test.cpp
libs/smart_ptr/example/shared_ptr_example.cpp
libs/smart_ptr/smarttest.zip
libs/smart_ptr/test/pointer_cast_test.cpp
libs/smart_ptr/test/pointer_to_other_test.cpp
libs/smart_ptr/test/smart_ptr_test.cpp
libs/statechart/doc/rationale.pdf
libs/statechart/doc/reference.pdf
libs/statechart/doc/tutorial.pdf
libs/statechart/test/TuTest.cpp
libs/statechart/test/TuTest.hpp
libs/statechart/test/TuTestMain.cpp
libs/static_assert/static_assert_example_1.cpp
libs/static_assert/static_assert_example_2.cpp
libs/static_assert/static_assert_example_3.cpp
libs/static_assert/static_assert_test.cpp
libs/static_assert/static_assert_test_fail_1.cpp
libs/static_assert/static_assert_test_fail_2.cpp
libs/static_assert/static_assert_test_fail_3.cpp
libs/static_assert/static_assert_test_fail_4.cpp
libs/static_assert/static_assert_test_fail_5.cpp
libs/static_assert/static_assert_test_fail_6.cpp
libs/static_assert/static_assert_test_fail_7.cpp
libs/static_assert/static_assert_test_fail_8.cpp
libs/static_assert/static_assert_test_fail_9.cpp
libs/test/example/exec_mon_example.cpp
libs/test/example/prg_exec_example.cpp
libs/test/example/test_case_template_example.cpp
libs/test/example/unit_test_example_01.cpp
libs/test/example/unit_test_example_02.cpp
libs/test/example/unit_test_example_03.cpp
libs/test/example/unit_test_example_04.cpp
libs/test/example/unit_test_example_05.cpp
libs/test/src/compiler_log_formatter.cpp
libs/test/src/cpp_main.cpp
libs/test/src/exception_safety.cpp
libs/test/src/execution_monitor.cpp
libs/test/src/framework.cpp
libs/test/src/interaction_based.cpp
libs/test/src/logged_expectations.cpp
libs/test/src/plain_report_formatter.cpp
libs/test/src/progress_monitor.cpp
libs/test/src/results_collector.cpp
libs/test/src/results_reporter.cpp
libs/test/src/test_tools.cpp
libs/test/src/unit_test_log.cpp
libs/test/src/unit_test_main.cpp
libs/test/src/unit_test_monitor.cpp
libs/test/src/unit_test_parameters.cpp
libs/test/src/unit_test_suite.cpp
libs/test/src/xml_log_formatter.cpp
libs/test/src/xml_report_formatter.cpp
libs/test/test/custom_exception_test.cpp
libs/test/test/errors_handling_test.cpp
libs/test/test/minimal_test.cpp
libs/test/test/online_test.cpp
libs/test/test/output_test_stream_test.cpp
libs/test/test/parameterized_test_test.cpp
libs/test/test/prg_exec_fail1.cpp
libs/test/test/prg_exec_fail2.cpp
libs/test/test/prg_exec_fail3.cpp
libs/test/test/prg_exec_fail4.cpp
libs/test/test/result_report_test.cpp
libs/test/test/test_case_template_test.cpp
libs/test/test/test_files/errors_handling_test.pattern
libs/test/test/test_files/result_report_test.pattern
libs/test/test/test_fp_comparisons.cpp
libs/test/test/test_tools_test.cpp
libs/type_traits/examples/copy_example.cpp
libs/type_traits/examples/fill_example.cpp
libs/type_traits/examples/iter_swap_example.cpp
libs/type_traits/examples/trivial_destructor_example.cpp
libs/utility/addressof_test.cpp
libs/utility/base_from_member_test.cpp
libs/utility/call_traits_test.cpp
libs/utility/iterators_test.cpp
libs/utility/noncopyable_test.cpp
libs/utility/operators_test.cpp
libs/utility/shared_iterator_example1.cpp
libs/utility/shared_iterator_example2.cpp
libs/utility/shared_iterator_example3.cpp
libs/wave/ChangeLog
more/blanket-permission.txt
tools/build/v2/hacking.txt
tools/inspect/build/Jamfile.v2
tools/inspect/inspect.cpp
tools/inspect/inspector.hpp
tools/inspect/link_check.cpp
tools/inspect/link_check.hpp
tools/inspect/tab_check.cpp
tools/inspect/tab_check.hpp
tools/quickbook/doc/quickbook.qbk

View file

@ -0,0 +1,17 @@
Backport Boost::Optional::has_value() from
https://github.com/boostorg/optional/commit/5182f7f30fad87023ae5e5a4e1f660fb513fb469
needed by LibreOffice 6.4.2
Index: boost_1_66_0/boost/optional/optional.hpp
===================================================================
--- boost_1_66_0.orig/boost/optional/optional.hpp
+++ boost_1_66_0/boost/optional/optional.hpp
@@ -1334,6 +1334,7 @@ class optional
#endif
bool operator!() const BOOST_NOEXCEPT { return !this->is_initialized() ; }
+ bool has_value() const BOOST_NOEXCEPT { return this->is_initialized() ; }
BOOST_EXPLICIT_OPERATOR_BOOL_NOEXCEPT()
} ;

176
python_library_name.patch Normal file
View file

@ -0,0 +1,176 @@
Python module needs to be built without these extra renames.
MPI module needs to reference correct python
~Index: boost_1_64_0/libs/mpi/build/Jamfile.v2
~===================================================================
~--- boost_1_64_0.orig/libs/mpi/build/Jamfile.v2
~+++ boost_1_64_0/libs/mpi/build/Jamfile.v2
~@@ -61,10 +61,10 @@ libraries += boost_mpi ;
~ lib boost_mpi_python
~ : # Sources
~ python/serialize.cpp
~+ /user-config//boost_python_alias
~ : # Requirements
~ <library>boost_mpi
~ <library>/mpi//mpi [ mpi.extra-requirements ]
~- <library>/boost/python//boost_python
~ <link>shared:<define>BOOST_MPI_DYN_LINK=1
~ <link>shared:<define>BOOST_MPI_PYTHON_DYN_LINK=1
~ <link>shared:<define>BOOST_PYTHON_DYN_LINK=1
~@@ -92,8 +92,8 @@ libraries += boost_mpi ;
~ python/skeleton_and_content.cpp
~ python/status.cpp
~ python/py_timer.cpp
~+ /user-config//boost_python_alias
~ : # Requirements
~- <library>/boost/python//boost_python
~ <library>boost_mpi_python
~ <library>boost_mpi
~ <library>/mpi//mpi [ mpi.extra-requirements ]
Index: boost_1_65_0/libs/python/build/Jamfile
===================================================================
--- boost_1_65_0.orig/libs/python/build/Jamfile
+++ boost_1_65_0/libs/python/build/Jamfile
@@ -42,15 +42,15 @@ rule cond ( test ? : yes * : no * ) { if
rule unless ( test ? : yes * : no * ) { if ! $(test) { return $(yes) ; } else { return $(no) ; } }
local rule eq ( a : b ) { if $(a) = $(b) { return 1 ; } }
-lib_boost_python(2) = boost_python ;
-lib_boost_python(3) = boost_python3 ;
+#lib_boost_python(2) = boost_python ;
+#lib_boost_python(3) = boost_python3 ;
-lib_boost_python($(py2-version)) = $(lib_boost_python(2)) ;
-lib_boost_python($(py3-version)) = $(lib_boost_python(3)) ;
+#lib_boost_python($(py2-version)) = $(lib_boost_python(2)) ;
+#lib_boost_python($(py3-version)) = $(lib_boost_python(3)) ;
rule lib_boost_python ( version )
{
- lib $(lib_boost_python($(version)))
+ lib boost_python #$(lib_boost_python($(version)))
: # sources
list.cpp
long.cpp
@@ -121,16 +121,16 @@ rule lib_boost_python ( version )
;
}
-lib_boost_numpy(2) = boost_numpy ;
-lib_boost_numpy(3) = boost_numpy3 ;
+#lib_boost_numpy(2) = boost_numpy ;
+#lib_boost_numpy(3) = boost_numpy3 ;
-lib_boost_numpy($(py2-version)) = $(lib_boost_numpy(2)) ;
-lib_boost_numpy($(py3-version)) = $(lib_boost_numpy(3)) ;
+#lib_boost_numpy($(py2-version)) = $(lib_boost_numpy(2)) ;
+#lib_boost_numpy($(py3-version)) = $(lib_boost_numpy(3)) ;
rule lib_boost_numpy ( version )
{
numpy-include = [ python.numpy-include ] ;
- lib $(lib_boost_numpy($(version)))
+ lib boost_numpy #$(lib_boost_numpy($(version)))
: # sources
numpy/dtype.cpp
numpy/matrix.cpp
@@ -172,7 +172,7 @@ for local N in 2 3
}
else
{
- alias $(lib_boost_python($(N))) ;
+ #alias $(lib_boost_python($(N))) ;
}
if $(py$(N)-version) && [ python.numpy ]
{
@@ -181,7 +181,7 @@ for local N in 2 3
}
else
{
- alias $(lib_boost_numpy($(N))) ;
+ #alias $(lib_boost_numpy($(N))) ;
}
}
Index: boost_1_65_0/libs/mpi/build/Jamfile.v2
===================================================================
--- boost_1_65_0.orig/libs/mpi/build/Jamfile.v2
+++ boost_1_65_0/libs/mpi/build/Jamfile.v2
@@ -58,33 +58,13 @@ libraries += boost_mpi ;
if [ python.configured ]
{
- py2-version = [ py-version 2 ] ;
- py3-version = [ py-version 3 ] ;
-
- # These library names are synchronized with those defined by Boost.Python, see libs/python/build/Jamfile.
- lib_boost_python(2) = boost_python ;
- lib_boost_python(3) = boost_python3 ;
-
- lib_boost_python($(py2-version)) = $(lib_boost_python(2)) ;
- lib_boost_python($(py3-version)) = $(lib_boost_python(3)) ;
-
- lib_boost_mpi_python(2) = boost_mpi_python ;
- lib_boost_mpi_python(3) = boost_mpi_python3 ;
-
- lib_boost_mpi_python($(py2-version)) = $(lib_boost_mpi_python(2)) ;
- lib_boost_mpi_python($(py3-version)) = $(lib_boost_mpi_python(3)) ;
-
- for local N in 2 3
- {
- if $(py$(N)-version)
- {
- lib $(lib_boost_mpi_python($(py$(N)-version)))
+ lib boost_mpi_python
: # Sources
python/serialize.cpp
: # Requirements
<library>boost_mpi
<library>/mpi//mpi [ mpi.extra-requirements ]
- <library>/boost/python//$(lib_boost_python($(py$(N)-version)))
+ <library>/boost/python//boost_python
<link>shared:<define>BOOST_MPI_DYN_LINK=1
<link>shared:<define>BOOST_MPI_PYTHON_DYN_LINK=1
<link>shared:<define>BOOST_PYTHON_DYN_LINK=1
@@ -92,12 +72,12 @@ libraries += boost_mpi ;
-<tag>@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag
<tag>@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).python-tag
<python-debugging>on:<define>BOOST_DEBUG_PYTHON
- <python>$(py$(N)-version)
: # Default build
<link>shared
: # Usage requirements
<library>/mpi//mpi [ mpi.extra-requirements ]
;
+ libraries += boost_mpi_python ;
python-extension mpi
: # Sources
@@ -114,8 +94,8 @@ libraries += boost_mpi ;
python/status.cpp
python/py_timer.cpp
: # Requirements
- <library>/boost/python//$(lib_boost_python($(py$(N)-version)))
- <library>$(lib_boost_mpi_python($(py$(N)-version)))
+ <library>/boost/python//boost_python
+ <library>boost_mpi_python
<library>boost_mpi
<library>/mpi//mpi [ mpi.extra-requirements ]
<link>shared:<define>BOOST_MPI_DYN_LINK=1
@@ -123,16 +103,7 @@ libraries += boost_mpi ;
<link>shared:<define>BOOST_PYTHON_DYN_LINK=1
<link>shared <runtime-link>shared
<python-debugging>on:<define>BOOST_DEBUG_PYTHON
- <python>$(py$(N)-version)
;
-
- libraries += $(lib_boost_mpi_python($(py$(N)-version))) ;
- }
- else
- {
- alias $(lib_boost_mpi_python($(N))) ;
- }
- }
}
}
else if ! ( --without-mpi in [ modules.peek : ARGV ] )

27
python_mpi.patch Normal file
View file

@ -0,0 +1,27 @@
Author: Adam Majer <adam.majer@suse.de>
Summary: Fix MPI module loading
MPI requires dl.RTLD_NOW|dl.RTLD_GLOBAL flags to load
properly.
Index: boost_1_64_0/libs/mpi/build/__init__.py
===================================================================
--- boost_1_64_0.orig/libs/mpi/build/__init__.py
+++ boost_1_64_0/libs/mpi/build/__init__.py
@@ -1,10 +1,7 @@
import sys
-if sys.platform == 'linux2':
- import DLFCN as dl
- flags = sys.getdlopenflags()
- sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)
- import mpi
- sys.setdlopenflags(flags)
-else:
- import mpi
+import DLFCN as dl
+flags = sys.getdlopenflags()
+sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)
+import boost.parallel.mpi.mpi
+sys.setdlopenflags(flags)

View file

@ -0,0 +1,22 @@
Author: Adam Majer <amajer@suse.de>
Date: Tue Apr 4 10:18:49 CEST 2017
Summary: rpmlint fixes?
After build, the following errors were returned.
[ 110s] libs/python/src/numpy/numpy.cpp: In function 'void* boost::python::numpy::wrap_import_array()':
[ 110s] libs/python/src/numpy/numpy.cpp:22:1: warning: control reaches end of non-void function [-Wreturn-type]
[ 110s] }
Index: boost_1_64_0/libs/python/src/numpy/numpy.cpp
===================================================================
--- boost_1_64_0.orig/libs/python/src/numpy/numpy.cpp
+++ boost_1_64_0/libs/python/src/numpy/numpy.cpp
@@ -19,6 +19,7 @@ static void wrap_import_array()
static void * wrap_import_array()
{
import_array();
+ return NULL; // import_array no longer auto-returns?
}
#endif

21
symbol_diff.sh Normal file
View file

@ -0,0 +1,21 @@
#!/bin/sh
# compares symbols of $1 vs. $2
# returns diff of the two global function tables
#
if test $# -ne 2; then
echo "$0 library1 library2"
exit 2
fi
PARAMS='[0-9a-f]\+[[:space:]]\+g[[:space:]]\+F[[:space:]]\+\.text[[:space:]]\+[0-9a-f]\+[[:space:]]\+'
objdump -t $1 | grep $PARAMS | sed -e 's#'$PARAMS'##' | sort > temp.$$
objdump -t $2 | grep $PARAMS | sed -e 's#'$PARAMS'##' | sort | diff temp.$$ -
RET=$?
rm temp.$$
exit $RET

102
variant.patch Normal file
View file

@ -0,0 +1,102 @@
commit 33784034b70a6607c9413633375e84912213a123
Author: Pawel Dac <pawel.dac@gmail.com>
Date: Tue Nov 7 17:49:15 2017 +0100
Perfect forwarding for passing visitor in apply_visitor.
Allows to catch Visitor&&, Visitor& and const Visitor&.
Removed apply_visitor with const Visitor& since it was catching inlined Visitors&&.
Passing const Visitor to result_wrapper resulted in compilation error when Visitor was mutable.
commit 03035b2f6b5d48d82270725f6eb52968180a2c64
Author: Antony Polukhin <antoshkka@gmail.com>
Date: Thu Jul 23 15:28:07 2020 +0300
Fix wrong usage of boost::move (fixes #53, #82)
Index: boost_1_66_0/boost/variant/detail/apply_visitor_unary.hpp
===================================================================
--- boost_1_66_0.orig/boost/variant/detail/apply_visitor_unary.hpp
+++ boost_1_66_0/boost/variant/detail/apply_visitor_unary.hpp
@@ -155,9 +155,9 @@ struct result_wrapper1
{
typedef decltype(result_multideduce1<Visitor, Variant>::deduce()) result_type;
- Visitor& visitor_;
- explicit result_wrapper1(Visitor& visitor) BOOST_NOEXCEPT
- : visitor_(visitor)
+ Visitor&& visitor_;
+ explicit result_wrapper1(Visitor&& visitor) BOOST_NOEXCEPT
+ : visitor_(::boost::forward<Visitor>(visitor))
{}
template <class T>
@@ -169,26 +169,15 @@ struct result_wrapper1
}} // namespace detail::variant
template <typename Visitor, typename Visitable>
-inline decltype(auto) apply_visitor(Visitor& visitor, Visitable&& visitable,
+inline decltype(auto) apply_visitor(Visitor&& visitor, Visitable&& visitable,
typename boost::disable_if<
boost::detail::variant::has_result_type<Visitor>
>::type* = 0)
{
- boost::detail::variant::result_wrapper1<Visitor, typename remove_reference<Visitable>::type> cpp14_vis(visitor);
+ boost::detail::variant::result_wrapper1<Visitor, typename remove_reference<Visitable>::type> cpp14_vis(::boost::forward<Visitor>(visitor));
return ::boost::forward<Visitable>(visitable).apply_visitor(cpp14_vis);
}
-template <typename Visitor, typename Visitable>
-inline decltype(auto) apply_visitor(const Visitor& visitor, Visitable&& visitable,
- typename boost::disable_if<
- boost::detail::variant::has_result_type<Visitor>
- >::type* = 0)
-{
- boost::detail::variant::result_wrapper1<const Visitor, typename remove_reference<Visitable>::type> cpp14_vis(visitor);
- return ::boost::forward<Visitable>(visitable).apply_visitor(cpp14_vis);
-}
-
-
#endif // !defined(BOOST_NO_CXX14_DECLTYPE_AUTO) && !defined(BOOST_NO_CXX11_DECLTYPE_N3276)
} // namespace boost
Index: boost_1_66_0/libs/variant/test/const_ref_apply_visitor.cpp
===================================================================
--- boost_1_66_0.orig/libs/variant/test/const_ref_apply_visitor.cpp
+++ boost_1_66_0/libs/variant/test/const_ref_apply_visitor.cpp
@@ -190,6 +190,13 @@ void test_cpp14_visitor(const variant_ty
BOOST_CHECK(boost::apply_visitor([](auto&& v) { return lvalue_rvalue_detector()(FORWARD(v)); }, test_var) == "lvalue reference");
}
+void test_cpp14_mutable_visitor(const variant_type& test_var)
+{
+ std::cout << "Testing const lvalue visitable for c++14 with inline mutable lambda\n";
+
+ BOOST_CHECK(boost::apply_visitor([](auto&& v) mutable -> auto { return lvalue_rvalue_detector()(FORWARD(v)); }, test_var) == "lvalue reference");
+}
+
void test_cpp14_visitor(const variant_type& test_var, const variant_type& test_var2)
{
std::cout << "Testing const lvalue visitable for c++14\n";
@@ -329,6 +336,7 @@ void run_cpp14_tests()
variant_type v1(10), v2(20), v3(30);
test_cpp14_visitor(v1);
+ test_cpp14_mutable_visitor(v1);
test_cpp14_visitor(v2, v3);
test_cpp14_visitor(v1, v2, v3);
Index: boost_1_66_0/boost/variant/variant.hpp
===================================================================
--- boost_1_66_0.orig/boost/variant/variant.hpp
+++ boost_1_66_0/boost/variant/variant.hpp
@@ -1048,7 +1048,7 @@ public: // internal visitor interfaces
template <typename T>
typename enable_if_c<MoveSemantics && is_same<T, T>::value, result_type>::type internal_visit(T&& operand, int)
{
- return visitor_(::boost::move<T>(operand));
+ return visitor_(::boost::move(operand));
}
//using workaround with is_same<T, T> to prenvent compilation error, because we need to use T in enable_if to make SFINAE work