[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2709-ge33d1fa

2013-04-03 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project CMake.

The branch, next has been updated
   via  e33d1fa4233ea4c7df6270ab622a892cde2d14f8 (commit)
   via  6c613b433c45efb0bb013a6bd668cbb8ac740259 (commit)
   via  99f7cc127a772f8c930d6045068db2645a84bba2 (commit)
  from  a4ffd610d3738b4d2ee7d685d52a62581df1413c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e33d1fa4233ea4c7df6270ab622a892cde2d14f8
commit e33d1fa4233ea4c7df6270ab622a892cde2d14f8
Merge: a4ffd61 6c613b4
Author: Brad King brad.k...@kitware.com
AuthorDate: Wed Apr 3 11:26:58 2013 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Apr 3 11:26:58 2013 -0400

Merge topic 'usr-move-relocatable' into next

6c613b4 Handle usr-move without forcing absolute paths (#14041)
99f7cc1 CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6c613b433c45efb0bb013a6bd668cbb8ac740259
commit 6c613b433c45efb0bb013a6bd668cbb8ac740259
Author: Brad King brad.k...@kitware.com
AuthorDate: Wed Apr 3 10:54:08 2013 -0400
Commit: Brad King brad.k...@kitware.com
CommitDate: Wed Apr 3 11:19:47 2013 -0400

Handle usr-move without forcing absolute paths (#14041)

In commit 0c727b90 (install(EXPORT): Force absolute paths for usr-move,
2013-03-08) and commit d4774140 (configure_package_config_file: force
absolute paths for usr-move, 2013-01-24) we supported Linux
distributions implementing the /usr move by assuming that installation
to (/usr)?/lib(64)? represents a non-relocatable system package.

When cross-compiling one may prepare a package for installation into a
system location on a target machine but install the package files on the
*host* machine inside another path for use with CMAKE_FIND_ROOT_PATH.
In this case the package development files must still be relocatable.

Handle /usr move with a new approach that works with relocatable
files.  Teach configure_package_config_file and install(EXPORT) to
generate special logic in a package configuration file or targets file
for installation under (/usr)?/lib(64)?.  Teach the file to recognize
when it is loaded through a symlink that refers to the same realpath as
its original install destination.  In such a case, use the original
install prefix.  Otherwise, compute the prefix relative to the current
file location to make it relocatable.

diff --git a/Modules/CMakePackageConfigHelpers.cmake 
b/Modules/CMakePackageConfigHelpers.cmake
index 393d05c..d042d5e 100644
--- a/Modules/CMakePackageConfigHelpers.cmake
+++ b/Modules/CMakePackageConfigHelpers.cmake
@@ -9,8 +9,6 @@
 # configure_file() command when creating the NameConfig.cmake or 
Name-config.cmake
 # file for installing a project or library. It helps making the resulting 
package
 # relocatable by avoiding hardcoded paths in the installed Config.cmake file.
-# NameConfig.cmake files installed under UNIX into /lib(64) or /usr/lib(64) 
are
-# considered system packages and are not relocatable.
 #
 # In a FooConfig.cmake file there may be code like this to make the
 # install destinations know to the using project:
@@ -176,32 +174,17 @@ function(CONFIGURE_PACKAGE_CONFIG_FILE _inputFile 
_outputFile)
 set(absInstallDir ${CMAKE_INSTALL_PREFIX}/${CCF_INSTALL_DESTINATION})
   endif()
 
-  # with the /usr-move, /lib(64) is a symlink to /usr/lib on Fedora, 
ArchLinux, Mageira and others.
-  # If we are installed to such a location, force using absolute paths.
-  set(forceAbsolutePaths FALSE)
-  if(${absInstallDir} MATCHES ^(/usr)?/lib(64)?/.+)
-set(forceAbsolutePaths TRUE)
-  endif()
-
   file(RELATIVE_PATH PACKAGE_RELATIVE_PATH ${absInstallDir} 
${CMAKE_INSTALL_PREFIX} )
 
   foreach(var ${CCF_PATH_VARS})
 if(NOT DEFINED ${var})
   message(FATAL_ERROR Variable ${var} does not exist)
 else()
-  if(forceAbsolutePaths)
-if(IS_ABSOLUTE ${${var}})
-  set(PACKAGE_${var} ${${var}})
-else()
-  set(PACKAGE_${var} ${CMAKE_INSTALL_PREFIX}/${${var}})
-endif()
+  if(IS_ABSOLUTE ${${var}})
+string(REPLACE ${CMAKE_INSTALL_PREFIX} \${PACKAGE_PREFIX_DIR}
+PACKAGE_${var} ${${var}})
   else()
-if(IS_ABSOLUTE ${${var}})
-  string(REPLACE ${CMAKE_INSTALL_PREFIX} \${PACKAGE_PREFIX_DIR}
-  PACKAGE_${var} ${${var}})
-else()
-  set(PACKAGE_${var} \${PACKAGE_PREFIX_DIR}/${${var}})
-endif()
+set(PACKAGE_${var} \${PACKAGE_PREFIX_DIR}/${${var}})
   endif()
 endif()
   endforeach()
@@ -216,6 +199,21 @@ 

[Cmake-commits] CMake branch, master, updated. v2.8.10.2-975-g00ef90e

2013-04-03 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project CMake.

The branch, master has been updated
   via  00ef90ec5eaa0c005a167eba64d6956293747ac6 (commit)
   via  bec8e64c735f8953bfe4b26a886add17f11fe440 (commit)
  from  99f7cc127a772f8c930d6045068db2645a84bba2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=00ef90ec5eaa0c005a167eba64d6956293747ac6
commit 00ef90ec5eaa0c005a167eba64d6956293747ac6
Merge: 99f7cc1 bec8e64
Author: Brad King brad.k...@kitware.com
AuthorDate: Wed Apr 3 11:42:50 2013 -0400
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Wed Apr 3 11:42:50 2013 -0400

Merge topic 'qt4-pthread'

bec8e64 Qt4: Fix typo setting a variable for FindThreads.


---

Summary of changes:
 Modules/Qt4ConfigDependentSettings.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2711-gd4d5d2f

2013-04-03 Thread Brad King
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project CMake.

The branch, next has been updated
   via  d4d5d2f1b68ca1657af85f74c0084651e72fd446 (commit)
   via  00ef90ec5eaa0c005a167eba64d6956293747ac6 (commit)
  from  e33d1fa4233ea4c7df6270ab622a892cde2d14f8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d4d5d2f1b68ca1657af85f74c0084651e72fd446
commit d4d5d2f1b68ca1657af85f74c0084651e72fd446
Merge: e33d1fa 00ef90e
Author: Brad King brad.k...@kitware.com
AuthorDate: Wed Apr 3 11:42:48 2013 -0400
Commit: Brad King brad.k...@kitware.com
CommitDate: Wed Apr 3 11:42:48 2013 -0400

Merge branch 'master' into next


---

Summary of changes:


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits