summaryrefslogtreecommitdiff
path: root/dev-util/cmake/files/cmake-2.8.6-FindBLAS-2.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-FindBLAS-2.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-FindBLAS-2.patch')
-rw-r--r--dev-util/cmake/files/cmake-2.8.6-FindBLAS-2.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-util/cmake/files/cmake-2.8.6-FindBLAS-2.patch b/dev-util/cmake/files/cmake-2.8.6-FindBLAS-2.patch
deleted file mode 100644
index 16b6480f577..00000000000
--- a/dev-util/cmake/files/cmake-2.8.6-FindBLAS-2.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff -ruN cmake-2.8.6.orig/Modules/FindBLAS.cmake cmake-2.8.6/Modules/FindBLAS.cmake
---- cmake-2.8.6.orig/Modules/FindBLAS.cmake 2011-10-04 18:09:24.000000000 +0200
-+++ cmake-2.8.6/Modules/FindBLAS.cmake 2011-11-22 23:04:17.000000000 +0100
-@@ -1,3 +1,9 @@
-+#
-+# Version modified for Gentoo Linux
-+# If a valid PkgConfig configuration for blas is found, this overrides and cancels
-+# all further checks.
-+#
-+
- # - Find BLAS library
- # This module finds an installed fortran library that implements the BLAS
- # linear-algebra interface (see http://www.netlib.org/blas/).
-@@ -39,6 +45,14 @@
- # (To distribute this file outside of CMake, substitute the full
- # License text for the above reference.)
-
-+#
-+# first, try PkgConfig
-+#
-+find_package(PkgConfig REQUIRED)
-+pkg_check_modules(BLAS blas)
-+if(NOT BLAS_FOUND)
-+message(STATUS "No PkgConfig configuration for BLAS found; starting more extensive search.")
-+
- include(CheckFunctionExists)
- include(CheckFortranFunctionExists)
-
-@@ -622,3 +636,6 @@
- endif(BLA_F95)
-
- set(CMAKE_FIND_LIBRARY_SUFFIXES ${_blas_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES})
-+
-+endif(NOT BLAS_FOUND)
-+