summaryrefslogtreecommitdiff
path: root/dev-util/cmake/files/cmake-2.8.6-FindBoost.patch
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2012-01-22 17:33:39 +0100
committerJohannes Huber <johu@gentoo.org>2012-01-22 17:33:39 +0100
commitd0990baadb44665630f0447c8f7beaeb5ee6a77a (patch)
tree65ab39b9978fb011b885484142a68489c7abd72f /dev-util/cmake/files/cmake-2.8.6-FindBoost.patch
parent4ef2eec1a7cbd2c3635d36eecdf8ffcc6e2d249f (diff)
downloadkde-d0990baadb44665630f0447c8f7beaeb5ee6a77a.tar.gz
kde-d0990baadb44665630f0447c8f7beaeb5ee6a77a.tar.bz2
kde-d0990baadb44665630f0447c8f7beaeb5ee6a77a.zip
[dev-util/cmake] Remove patched version to use eselected boost. Latest boost is wanted see bug 335108 resolution.
(Portage version: 2.2.0_alpha84/git/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-util/cmake/files/cmake-2.8.6-FindBoost.patch')
-rw-r--r--dev-util/cmake/files/cmake-2.8.6-FindBoost.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-util/cmake/files/cmake-2.8.6-FindBoost.patch b/dev-util/cmake/files/cmake-2.8.6-FindBoost.patch
deleted file mode 100644
index d4d4e946c65..00000000000
--- a/dev-util/cmake/files/cmake-2.8.6-FindBoost.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From c7a600899bc3ca186ea1049af80bdc50b0d9ac49 Mon Sep 17 00:00:00 2001
-From: Johannes Huber <johu@gentoo.org>
-Date: Fri, 13 Jan 2012 09:29:35 +0100
-Subject: [PATCH] Use eselected version in non exact version find operation.
- Fixes gentoo bug
- https://bugs.gentoo.org/show_bug.cgi?id=335108.
-
----
- Modules/FindBoost.cmake | 14 +++++++++++---
- 1 files changed, 11 insertions(+), 3 deletions(-)
-
-diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
-index 9c03b3d..9ccda31 100644
---- a/Modules/FindBoost.cmake
-+++ b/Modules/FindBoost.cmake
-@@ -73,6 +73,9 @@
- # binary Boost releases do so.
- #
- # set(Boost_ADDITIONAL_VERSIONS "1.78" "1.78.0" "1.79" "1.79.0")
-+
-+# Some future versions to be safe
-+set(Boost_ADDITIONAL_VERSIONS "1.50.0" "1.50" "1.49.0" "1.49" "1.48.0" "1.48")
- #
- # ===================================== ============= ========================
- #
-@@ -658,9 +661,14 @@ else(_boost_IN_CACHE)
- _boost_BOOSTIFIED_VERSION ${_boost_VER})
- endif()
-
-- list(APPEND _boost_PATH_SUFFIXES "boost-${_boost_BOOSTIFIED_VERSION}")
-- list(APPEND _boost_PATH_SUFFIXES "boost_${_boost_BOOSTIFIED_VERSION}")
--
-+ # Rely only on eselected sym link version in gentoo
-+ # in case of no exact version version search.
-+ # See https://bugs.gentoo.org/show_bug.cgi?id=335108
-+ if( Boost_FIND_VERSION_EXACT )
-+ list(APPEND _boost_PATH_SUFFIXES "boost-${_boost_BOOSTIFIED_VERSION}")
-+ list(APPEND _boost_PATH_SUFFIXES "boost_${_boost_BOOSTIFIED_VERSION}")
-+ endif( Boost_FIND_VERSION_EXACT )
-+
- endforeach(_boost_VER)
-
- if(Boost_DEBUG)
---
-1.7.8.3
-