diff --git a/Installation/CMakeLists.txt b/Installation/CMakeLists.txt
index 0e1615cc90a..4267b9ab313 100644
--- a/Installation/CMakeLists.txt
+++ b/Installation/CMakeLists.txt
@@ -19,9 +19,20 @@ else()
cmake_policy(VERSION 2.6)
endif()
+#
+# Compatibility with CMake 3.0
+#
if(POLICY CMP0026)
+ # Allow the LOCATION target property
+ # http://www.cmake.org/cmake/help/v3.0/policy/CMP0026.html
cmake_policy(SET CMP0026 OLD)
endif()
+if(POLICY CMP0042)
+ # Do not enable the use of MACOSX_RPATH
+ # http://www.cmake.org/cmake/help/v3.0/policy/CMP0042.html
+ cmake_policy(SET CMP0042 OLD)
+endif()
+
#--------------------------------------------------------------------------------------------------
#
diff --git a/Installation/changes.html b/Installation/changes.html
index d9392070a28..cdfa273ca7c 100644
--- a/Installation/changes.html
+++ b/Installation/changes.html
@@ -129,6 +129,7 @@ and src/ directories).
Properties of Point-Sampled Surfaces packages. From CGAL
version 4.5, Taucs, Blas and Lapack are no longer supported.
+