Bump version to 4.3-4
[LibreOffice.git] / external / boost / UnpackedTarball_boost.mk
blobffaf0b6abd753732bfde3f789aa505c712137348
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 boost_patches :=
11 #https://svn.boost.org/trac/boost/ticket/3780
12 boost_patches += boost.3780.aliasing.patch
13 #https://svn.boost.org/trac/boost/ticket/9397
14 boost_patches += boost.9397.warnings.patch.0
15 #http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47679
16 boost_patches += boost.gcc47679.patch
17 #https://svn.boost.org/trac/boost/ticket/6369
18 boost_patches += boost.6369.warnings.patch
19 #https://svn.boost.org/trac/boost/ticket/7551
20 boost_patches += boost.7551.unusedvars.patch
21 #https://svn.boost.org/trac/boost/ticket/6142
22 boost_patches += boost.6142.warnings.patch.1
24 # fixed upstream
25 boost_patches += boost.bind.Wunused-local-typedefs.warnings.patch
26 # fixed upstream
27 boost_patches += boost.concept_check.C4100.warnings.patch
28 # fixed upstream
29 boost_patches += boost.concept_check.Wunused-local-typedefs.warnings.patch
30 # https://svn.boost.org/trac/boost/ticket/9881
31 boost_patches += boost.crc.Wshadow.warnings.patch
32 # https://svn.boost.org/trac/boost/ticket/9882
33 boost_patches += boost.date_time.Wshadow.warnings.patch
34 # https://svn.boost.org/trac/boost/ticket/9883
35 boost_patches += boost.date_time.Wunused-local-typedefs.warnings.patch
36 # fixed upstream
37 boost_patches += boost.math.Wdeprecated-register.patch.0
38 # https://svn.boost.org/trac/boost/ticket/9884
39 boost_patches += boost.math.Wunused-local-typedefs.warnings.patch
40 # https://svn.boost.org/trac/boost/ticket/9885
41 boost_patches += boost.multi_array.C4510.warnings.patch
42 # https://svn.boost.org/trac/boost/ticket/9886
43 boost_patches += boost.multi_array.Wshadow.warnings.patch.2
44 # https://svn.boost.org/trac/boost/ticket/9887
45 boost_patches += boost.multi_array.Wundef.warnings.patch
46 # https://svn.boost.org/trac/boost/ticket/9888
47 boost_patches += boost.multi_array.Wunused-local-typedefs.warnings.patch
48 # fixed upstream
49 boost_patches += boost.multi_index.Wshadow.warnings.patch.1
50 # https://svn.boost.org/trac/boost/ticket/9889
51 boost_patches += boost.predef.Wundef.warnings.patch
52 # https://svn.boost.org/trac/boost/ticket/9891
53 boost_patches += boost.preprocessor.Wundef.warnings.patch
54 # https://svn.boost.org/trac/boost/ticket/9892
55 boost_patches += boost.property_tree.Wshadow.warnings.patch.1
56 # https://svn.boost.org/trac/boost/ticket/9893
57 boost_patches += boost.property_tree.Wtype-limits.warnings.patch.1
58 # https://svn.boost.org/trac/boost/ticket/9894
59 boost_patches += boost.ptr_container.Wshadow.warnings.patch
60 # https://svn.boost.org/trac/boost/ticket/9895
61 boost_patches += boost.ptr_container.Wignored-qualifiers.warnings.patch
62 # https://svn.boost.org/trac/boost/ticket/9896
63 boost_patches += boost.ptr_container.Wextra.warnings.patch
64 # https://svn.boost.org/trac/boost/ticket/9897
65 boost_patches += boost.ptr_container.Wunused-parameter.warnings.patch
66 # https://svn.boost.org/trac/boost/ticket/9898
67 boost_patches += boost.random.Wshadow.warnings.patch
68 # fixed upstream
69 boost_patches += boost.random.Wunused-local-typedefs.warnings.patch
70 # https://svn.boost.org/trac/boost/ticket/9900
71 boost_patches += boost.spirit.Wshadow.warnings.patch
72 # https://svn.boost.org/trac/boost/ticket/9901
73 boost_patches += boost.spirit.Wunused-local-typedefs.warnings.patch
74 # fixed upstream
75 boost_patches += boost.unordered.Wshadow.warnings.patch
76 # https://svn.boost.org/trac/boost/ticket/9902
77 boost_patches += boost.tuple.Wunused-local-typedefs.warnings.patch
78 # https://svn.boost.org/trac/boost/ticket/9903
79 boost_patches += boost.utility.Wundef.warnings.patch
80 # fixed upstream
81 boost_patches += boost.uuid.Wshadow.warnings.patch
83 # https://svn.boost.org/trac/boost/ticket/9890
84 boost_patches += boost.endian.patch
85 # fixed upstream
86 boost_patches += boost.loplugin.patch
87 # fixed upstream
88 boost_patches += boost.transform_width.patch
90 # Help static analysis tools (see SAL_UNUSED_PARAMETER in sal/types.h):
91 ifeq (GCC,$(COM))
92 boost_patches += boost_1_44_0-unused-parameters.patch
93 endif
95 # Clang warnings:
96 boost_patches += boost_1_44_0-clang-warnings.patch
98 boost_patches += boost.auto_link.patch
99 boost_patches += boost.std.move.patch
100 boost_patches += boost.wunused.patch
101 boost_patches += boost.wdeprecated-auto_ptr.patch.0
103 $(eval $(call gb_UnpackedTarball_UnpackedTarball,boost))
105 $(eval $(call gb_UnpackedTarball_set_tarball,boost,$(BOOST_TARBALL)))
107 $(eval $(call gb_UnpackedTarball_set_patchlevel,boost,3))
109 $(eval $(call gb_UnpackedTarball_add_patches,boost,\
110 $(foreach patch,$(boost_patches),external/boost/$(patch)) \
113 # vim: set noet sw=4 ts=4: