Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/cmake/files: cmake-2.6.4-FindBoost.patch
Date: Fri, 17 Jul 2009 19:10:46
Message-Id: E1MRsnS-0004E8-Ri@stork.gentoo.org
1 arfrever 09/07/17 19:08:42
2
3 Added: cmake-2.6.4-FindBoost.patch
4 Log:
5 Support more Boost versions.
6 (Portage version: 13832-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-util/cmake/files/cmake-2.6.4-FindBoost.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cmake/files/cmake-2.6.4-FindBoost.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cmake/files/cmake-2.6.4-FindBoost.patch?rev=1.1&content-type=text/plain
13
14 Index: cmake-2.6.4-FindBoost.patch
15 ===================================================================
16 --- Modules/FindBoost.cmake
17 +++ Modules/FindBoost.cmake
18 @@ -57,7 +57,8 @@
19 #
20 # Currently this module searches for the following version numbers:
21 # 1.33, 1.33.0, 1.33.1, 1.34, 1.34.0, 1.34.1, 1.35, 1.35.0, 1.35.1,
22 -# 1.36, 1.36.0, 1.36.1, 1.37, 1.37.0, 1.38, 1.38.0
23 +# 1.36, 1.36.0, 1.36.1, 1.37, 1.37.0, 1.38, 1.38.0, 1.39, 1.39.0,
24 +# 1.40, 1.40.0, 1.41, 1.41.0, 1.42, 1.42.0, 1.43, 1.43.0, 1.44, 1.44.0
25 #
26 # NOTE: If you add a new major 1.x version in Boost_ADDITIONAL_VERSIONS you should
27 # add both 1.x and 1.x.0 as shown above. Official Boost include directories
28 @@ -271,7 +272,8 @@
29 # The user has not requested an exact version. Among known
30 # versions, find those that are acceptable to the user request.
31 set(_Boost_KNOWN_VERSIONS ${Boost_ADDITIONAL_VERSIONS}
32 - "1.38.0" "1.38" "1.37.0" "1.37"
33 + "1.44.0" "1.44" "1.43.0" "1.43" "1.42.0" "1.42" "1.41.0" "1.41"
34 + "1.40.0" "1.40" "1.39.0" "1.39" "1.38.0" "1.38" "1.37.0" "1.37"
35 "1.36.1" "1.36.0" "1.36" "1.35.1" "1.35.0" "1.35" "1.34.1" "1.34.0"
36 "1.34" "1.33.1" "1.33.0" "1.33")
37 set(_boost_TEST_VERSIONS)