[Cmake-commits] CMake branch, next, updated. v2.8.2-356-g8dc9286

Kovarththanan Rajaratnam kovarththanan.rajaratnam at gmail.com
Wed Aug 4 03:10:37 EDT 2010


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  8dc9286a3d9424c38049ca5cb396c1dda7b438e4 (commit)
       via  a918bd526453c4f4c92a3a1d6823fbd1b1b280ef (commit)
      from  21390d9bdd181fca7faee159116f1da21901ce5b (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=8dc9286a3d9424c38049ca5cb396c1dda7b438e4
commit 8dc9286a3d9424c38049ca5cb396c1dda7b438e4
Merge: 21390d9 a918bd5
Author:     Kovarththanan Rajaratnam <kovarththanan.rajaratnam at gmail.com>
AuthorDate: Wed Aug 4 08:52:14 2010 +0200
Commit:     Kovarththanan Rajaratnam <kovarththanan.rajaratnam at gmail.com>
CommitDate: Wed Aug 4 08:52:14 2010 +0200

    Merge branch 'findsubversion_fphsa_cleanup' into next


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a918bd526453c4f4c92a3a1d6823fbd1b1b280ef
commit a918bd526453c4f4c92a3a1d6823fbd1b1b280ef
Author:     Kovarththanan Rajaratnam <kovarththanan.rajaratnam at gmail.com>
AuthorDate: Wed Aug 4 08:51:55 2010 +0200
Commit:     Kovarththanan Rajaratnam <kovarththanan.rajaratnam at gmail.com>
CommitDate: Wed Aug 4 08:51:55 2010 +0200

    FindSubversion: set compatibility variables based on FPHSA()

diff --git a/Modules/FindSubversion.cmake b/Modules/FindSubversion.cmake
index 58a179d..687aa19 100644
--- a/Modules/FindSubversion.cmake
+++ b/Modules/FindSubversion.cmake
@@ -38,16 +38,11 @@
 # (To distributed this file outside of CMake, substitute the full
 #  License text for the above reference.)
 
-SET(Subversion_FOUND FALSE)
-SET(Subversion_SVN_FOUND FALSE)
-
 FIND_PROGRAM(Subversion_SVN_EXECUTABLE svn
   DOC "subversion command line client")
 MARK_AS_ADVANCED(Subversion_SVN_EXECUTABLE)
 
 IF(Subversion_SVN_EXECUTABLE)
-  SET(Subversion_SVN_FOUND TRUE)
-  SET(Subversion_FOUND TRUE)
 
   MACRO(Subversion_WC_INFO dir prefix)
     # the subversion commands should be executed with the C locale, otherwise
@@ -111,3 +106,7 @@ ENDIF(Subversion_SVN_EXECUTABLE)
 
 INCLUDE(FindPackageHandleStandardArgs)
 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Subversion DEFAULT_MSG Subversion_SVN_EXECUTABLE)
+
+# for compatibility
+SET(Subversion_FOUND ${SUBVERSION_FOUND})
+SET(Subversion_SVN_FOUND ${SUBVERSION_FOUND})

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

Summary of changes:
 Modules/FindSubversion.cmake |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list