ed259e5efe
<https://dev-www.libreoffice.org/src/boost_1_81_0.tar.xz> has been generated (on Fedora 37) with > $ wget https://boostorg.jfrog.io/artifactory/main/release/1.81.0/source/boost_1_81_0.tar.bz2 > $ printf '71feeed900fbccca04a3b4f2f84a7c217186f28a940ed8b7ed4725986baf99fa boost_1_81_0.tar.bz2' | sha256sum -c # cf. <https://www.boost.org/users/history/version_1_81_0.html> > boost_1_81_0.tar.bz2: OK > $ external/boost/repack_tarball.sh boost_1_81_0.tar.bz2 > Unpacking boost_1_81_0.tar.bz2 ... > Removing unnecessary files ... > Creating boost_1_81_0.tar.xz ... > Cleaning up ... > 1deb0a5a9e33a6626fcaa1d2efd4c0e74ca2b0eea87c1559e3917f3066b633d6 boost_1_81_0.tar.xz > Done. * external/boost/windows-no-utf8-locales.patch.0, introduced withf046fed278
"Don't ever attempt to initialise a std::locale with a UTF-8 locale on Windows", was presumably obsoleted by <f45adfc9b9
> "Use UTF-16 <-> UTF-8 codecvt on Windows". * external/boost/libc++.patch.0 was obsoleted by <f0af4a9184
> "The std lib unary/binary_function base classes are deprecated/removed from libcpp15." * external/boost/0001-Change-mpl-integral_c-to-boost-integral_constant-to-.patch.2 was obsoleted by <50a1eae942
> "Change mpl::integral_c to boost::integral_constant to avoid Clang 16 errors when constructing out of range enums (refs #24, boostorg/mpl#69)". * external/boost/0001-Avoid-boost-phoenix-placeholders-uarg1.10-ODR-violat.patch.2 is needed to e.g. avoid > ./.libs/libetonyek_internal.a(libetonyek_internal_la-KEY1DivElement.o):(.bss+0x3e): multiple definition of `boost::phoenix::placeholders::uarg1'; ./.libs/libetonyek_internal.a(libetonyek_internal_la-IWORKFormula.o):(.bss+0x3e): first defined here etc. while building ExternalProject_libetonyek, caused by <8b6a9c26c1
> "std::tuple support (Resolving #103) (#104)". Change-Id: I48773166d0c50f2850d8bb37fa6215d9e5c0d51d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145044 Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com>
50 lines
1.6 KiB
Makefile
50 lines
1.6 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
boost_patches :=
|
|
|
|
#https://svn.boost.org/trac/boost/ticket/6142
|
|
boost_patches += boost.6142.warnings.patch.1
|
|
|
|
boost_patches += boost.noiconv.patch
|
|
boost_patches += boost.between.warning.patch
|
|
boost_patches += boost.fallback.encoding.patch
|
|
|
|
boost_patches += rtti.patch.0
|
|
|
|
# https://svn.boost.org/trac/boost/ticket/11505
|
|
boost_patches += boost_1_59_0.mpl.config.wundef.patch
|
|
# https://svn.boost.org/trac/boost/ticket/11501
|
|
boost_patches += boost_1_59_0.property_tree.wreturn-type.patch
|
|
|
|
boost_patches += clang-cl.patch.0
|
|
|
|
boost_patches += boost_1_63_0.undef.warning.patch.1
|
|
|
|
boost_patches += msvc2017.patch.0
|
|
|
|
boost_patches += boost-ios.patch.0
|
|
|
|
# <https://github.com/boostorg/phoenix/pull/116> "Avoid boost::phoenix::placeholders::uarg1..10 ODR
|
|
# violations":
|
|
boost_patches += 0001-Avoid-boost-phoenix-placeholders-uarg1.10-ODR-violat.patch.2
|
|
|
|
$(eval $(call gb_UnpackedTarball_UnpackedTarball,boost))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_tarball,boost,$(BOOST_TARBALL)))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_patchlevel,boost,3))
|
|
|
|
$(eval $(call gb_UnpackedTarball_add_patches,boost,\
|
|
$(foreach patch,$(boost_patches),external/boost/$(patch)) \
|
|
external/boost/boost-emscripten-noshm.patch.0 \
|
|
external/boost/boost-emscripten-nowasm.patch.0 \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|