[Cmake-commits] CMake branch, next, updated. v3.1.0-1253-gdb4b106

Brad King brad.king at kitware.com
Thu Dec 18 10:44:44 EST 2014


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  db4b106b69e047a6242623a418999d51919b11c6 (commit)
       via  fb3db9f84cf4c7f847578cde49ef8fcdd572923f (commit)
       via  c3d032f43de99c6e71dc248666ca8fef53c5ab12 (commit)
      from  6efd16b3cc70483824229c365f9a966e1e6ee12e (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=db4b106b69e047a6242623a418999d51919b11c6
commit db4b106b69e047a6242623a418999d51919b11c6
Merge: 6efd16b fb3db9f
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Dec 18 10:44:44 2014 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Dec 18 10:44:44 2014 -0500

    Merge topic 'nightly-binary-updates' into next
    
    fb3db9f8 Utilities/Release: Build Windows and OS X binaries with native SSL
    c3d032f4 Utilities/Release: Fix name of OS X 10.6+ x86_64-only binary


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=fb3db9f84cf4c7f847578cde49ef8fcdd572923f
commit fb3db9f84cf4c7f847578cde49ef8fcdd572923f
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Dec 18 10:42:21 2014 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Dec 18 10:44:37 2014 -0500

    Utilities/Release: Build Windows and OS X binaries with native SSL
    
    For the nightly binaries, turn of CMAKE_USE_OPENSSL on Windows and OS X
    10.6+ platforms.  This will activate the new curl behavior to use the
    OS-native SSL/TLS implementation.

diff --git a/Utilities/Release/dash2win64_release.cmake b/Utilities/Release/dash2win64_release.cmake
index 848e2f4..345870b 100644
--- a/Utilities/Release/dash2win64_release.cmake
+++ b/Utilities/Release/dash2win64_release.cmake
@@ -7,8 +7,13 @@ set(CPACK_BINARY_GENERATORS "NSIS ZIP")
 set(CPACK_SOURCE_GENERATORS "ZIP")
 set(MAKE_PROGRAM "make")
 set(MAKE "${MAKE_PROGRAM} -j8")
+if(CMAKE_CREATE_VERSION STREQUAL "nightly")
+  set(CMAKE_USE_OPENSSL OFF)
+else()
+  set(CMAKE_USE_OPENSSL ON)
+endif()
 set(INITIAL_CACHE "CMAKE_BUILD_TYPE:STRING=Release
-CMAKE_USE_OPENSSL:BOOL=ON
+CMAKE_USE_OPENSSL:BOOL=${CMAKE_USE_OPENSSL}
 CMAKE_SKIP_BOOTSTRAP_TEST:STRING=TRUE
 CMAKE_Fortran_COMPILER:FILEPATH=FALSE
 CMAKE_GENERATOR:INTERNAL=Unix Makefiles
diff --git a/Utilities/Release/dashmacmini5_release.cmake b/Utilities/Release/dashmacmini5_release.cmake
index 0822a1c..b2f1ceb 100644
--- a/Utilities/Release/dashmacmini5_release.cmake
+++ b/Utilities/Release/dashmacmini5_release.cmake
@@ -8,8 +8,13 @@ set(MAKE "${MAKE_PROGRAM} -j5")
 set(CPACK_BINARY_GENERATORS "DragNDrop TGZ TZ")
 set(CPACK_SOURCE_GENERATORS "TGZ TZ")
 set(CPACK_DMG_FORMAT "UDBZ") #build using bzip2 for smaller package size
+if(CMAKE_CREATE_VERSION STREQUAL "nightly")
+  set(CMAKE_USE_OPENSSL OFF)
+else()
+  set(CMAKE_USE_OPENSSL ON)
+endif()
 set(INITIAL_CACHE "
-CMAKE_USE_OPENSSL:BOOL=ON
+CMAKE_USE_OPENSSL:BOOL=${CMAKE_USE_OPENSSL}
 OPENSSL_CRYPTO_LIBRARY:FILEPATH=/Users/kitware/openssl-1.0.1g-install/lib/libcrypto.a
 OPENSSL_INCLUDE_DIR:PATH=/Users/kitware/openssl-1.0.1g-install/include
 OPENSSL_SSL_LIBRARY:FILEPATH=/Users/kitware/openssl-1.0.1g-install/lib/libssl.a

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c3d032f43de99c6e71dc248666ca8fef53c5ab12
commit c3d032f43de99c6e71dc248666ca8fef53c5ab12
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Dec 18 09:13:44 2014 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Dec 18 10:44:37 2014 -0500

    Utilities/Release: Fix name of OS X 10.6+ x86_64-only binary
    
    In commit v3.1.0-rc1~52^2 (Make the OSX 10.6+ release x86_64 only,
    2014-09-29) we forgot to remove the name "universal" from the binary
    name.  Drop it now since the binary is no longer universal.
    
    While at it, update the deployment target to actually be 10.6.

diff --git a/Utilities/Release/dashmacmini5_release.cmake b/Utilities/Release/dashmacmini5_release.cmake
index 6c9b8f4..0822a1c 100644
--- a/Utilities/Release/dashmacmini5_release.cmake
+++ b/Utilities/Release/dashmacmini5_release.cmake
@@ -15,9 +15,9 @@ OPENSSL_INCLUDE_DIR:PATH=/Users/kitware/openssl-1.0.1g-install/include
 OPENSSL_SSL_LIBRARY:FILEPATH=/Users/kitware/openssl-1.0.1g-install/lib/libssl.a
 CMAKE_BUILD_TYPE:STRING=Release
 CMAKE_OSX_ARCHITECTURES:STRING=x86_64
-CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.5
+CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.6
 CMAKE_SKIP_BOOTSTRAP_TEST:STRING=TRUE
-CPACK_SYSTEM_NAME:STRING=Darwin64-universal
+CPACK_SYSTEM_NAME:STRING=Darwin64
 BUILD_QtDialog:BOOL=TRUE
 CMake_GUI_DISTRIBUTE_WITH_Qt_LGPL:BOOL=TRUE
 QT_QMAKE_EXECUTABLE:FILEPATH=/Users/kitware/Support/qt-4.8.0/install/bin/qmake

-----------------------------------------------------------------------

Summary of changes:


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list