[Cmake-commits] CMake branch, next, updated. v2.8.10.1-1030-g0fdd1ec

Stephen Kelly steveire at gmail.com
Mon Nov 26 09:11:56 EST 2012


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  0fdd1ec3d6d5eaf0be8e026d048b67d8249fe028 (commit)
       via  f285ad7329bff2958ec334e235cfe5b765437b42 (commit)
      from  52818aec9c361718a959cc4bd742177558f9e6cc (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=0fdd1ec3d6d5eaf0be8e026d048b67d8249fe028
commit 0fdd1ec3d6d5eaf0be8e026d048b67d8249fe028
Merge: 52818ae f285ad7
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Mon Nov 26 09:11:38 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Nov 26 09:11:38 2012 -0500

    Merge topic 'tll-set-include-and-defines-requirements' into next
    
    f285ad7 Use cmStdRemove workaround for ancient GCC too.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f285ad7329bff2958ec334e235cfe5b765437b42
commit f285ad7329bff2958ec334e235cfe5b765437b42
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Mon Nov 26 14:56:53 2012 +0100
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Mon Nov 26 15:08:34 2012 +0100

    Use cmStdRemove workaround for ancient GCC too.
    
    Attempt to fix the error at
    
     http://open.cdash.org/viewBuildError.php?buildid=2683687

diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 55c47c8..77571e8 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -2553,7 +2553,7 @@ ForwardIterator cmStdRemove(ForwardIterator first,
                             ForwardIterator last,
                             const T& value)
 {
-#ifdef __BORLANDC__
+#if defined(__BORLANDC__) || (defined(__GNUC__) && __GNUC__ < 3)
   ForwardIterator result = first;
   for ( ; first != last; ++first)
     {

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

Summary of changes:
 Source/cmTarget.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list