summaryrefslogtreecommitdiff
path: root/dev-util/cmake/files/cmake-2.8.0-darwin-default-install_name.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.0-darwin-default-install_name.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.0-darwin-default-install_name.patch')
-rw-r--r--dev-util/cmake/files/cmake-2.8.0-darwin-default-install_name.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-util/cmake/files/cmake-2.8.0-darwin-default-install_name.patch b/dev-util/cmake/files/cmake-2.8.0-darwin-default-install_name.patch
deleted file mode 100644
index 4ef0c7b4b6f..00000000000
--- a/dev-util/cmake/files/cmake-2.8.0-darwin-default-install_name.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-The install_name of a library can be compared to the ELF soname, setting
-it to just the library name (libx.1.dylib) is not sufficient on Mach-O,
-as it uses full paths. Most apps have no clue about that, so they don't
-do something like http://www.cmake.org/pipermail/cmake/2006-June/009758.html
-
-Provide a sane default that will allow merging most cmake-based
-packages. If this location is not correct, Portage's QA checks will
-catch that.
-
---- Source/cmTarget.cxx
-+++ Source/cmTarget.cxx
-@@ -974,7 +974,7 @@
- this->Makefile->IsOn("MINGW"));
-
- // Setup default property values.
-- this->SetPropertyDefault("INSTALL_NAME_DIR", "");
-+ this->SetPropertyDefault("INSTALL_NAME_DIR", "${CMAKE_INSTALL_PREFIX}/lib");
- this->SetPropertyDefault("INSTALL_RPATH", "");
- this->SetPropertyDefault("INSTALL_RPATH_USE_LINK_PATH", "OFF");
- this->SetPropertyDefault("SKIP_BUILD_RPATH", "OFF");