[Cmake-commits] CMake branch, next, updated. v2.8.4-1635-gc637d33

Brad King brad.king at kitware.com
Tue May 31 09:10:51 EDT 2011


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  c637d33362290c8b5f44e1ace444012d570316db (commit)
       via  a4cba0e8be09f1a0a6a9bb9f8c56cbb596447e89 (commit)
      from  c975c1a292e50aab5659ece49aa7f739f6d49ca2 (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=c637d33362290c8b5f44e1ace444012d570316db
commit c637d33362290c8b5f44e1ace444012d570316db
Merge: c975c1a a4cba0e
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue May 31 09:10:49 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue May 31 09:10:49 2011 -0400

    Merge topic 'aix-gcc-2.9-issue-12233' into next
    
    a4cba0e Fix plugin API for gcc 2.9-aix51-020209 (#12233)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a4cba0e8be09f1a0a6a9bb9f8c56cbb596447e89
commit a4cba0e8be09f1a0a6a9bb9f8c56cbb596447e89
Author:     Daniel R. Gomez <gomez at teragram.com>
AuthorDate: Sun May 29 00:28:00 2011 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue May 31 09:08:59 2011 -0400

    Fix plugin API for gcc 2.9-aix51-020209 (#12233)
    
    Use proper C function prototype syntax to satisfy this compiler.

diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx
index 411a28d..e237913 100644
--- a/Source/cmCPluginAPI.cxx
+++ b/Source/cmCPluginAPI.cxx
@@ -518,7 +518,7 @@ public:
 };
 cmCPluginAPISourceFileMap cmCPluginAPISourceFiles;
 
-void * CCONV cmCreateSourceFile()
+void * CCONV cmCreateSourceFile(void)
 {
   return (void*)new cmCPluginAPISourceFile;
 }

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list