forked from pool/cmake
This commit is contained in:
parent
e011cac143
commit
209b8b89b2
@ -1,18 +0,0 @@
|
|||||||
--- Source/cmGlobalUnixMakefileGenerator3.cxx
|
|
||||||
+++ Source/cmGlobalUnixMakefileGenerator3.cxx
|
|
||||||
@@ -767,6 +767,7 @@
|
|
||||||
std::string progressDir =
|
|
||||||
lg->GetMakefile()->GetHomeOutputDirectory();
|
|
||||||
progressDir += cmake::GetCMakeFilesDirectory();
|
|
||||||
+#if 0
|
|
||||||
{
|
|
||||||
cmOStringStream progCmd;
|
|
||||||
progCmd << "$(CMAKE_COMMAND) -E cmake_progress_report ";
|
|
||||||
@@ -786,6 +787,7 @@
|
|
||||||
progressDir = "Built target ";
|
|
||||||
progressDir += t->first;
|
|
||||||
lg->AppendEcho(commands,progressDir.c_str());
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
this->AppendGlobalTargetDepends(depends,t->second);
|
|
||||||
lg->WriteMakeRule(ruleFileStream, "All Build rule for target.",
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6c79f4796e117302cdc9725aa207cd636b6889d2fe97e69697b3be8510ad85dd
|
|
||||||
size 2691601
|
|
3
cmake-2.6.2.tar.bz2
Normal file
3
cmake-2.6.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a87ba7b8e9c35ff734d66948a193f4d8e9b6d8eb3bec4f6cd6c700ef5081dbea
|
||||||
|
size 2713210
|
@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 30 15:05:12 CEST 2008 - puzel@suse.cz
|
||||||
|
|
||||||
|
- update to 2.6.2:
|
||||||
|
- Fixed: cpack did not work when sym-linked after install
|
||||||
|
- Add beta BundleUtilities.cmake file
|
||||||
|
- CPackRPM 7435 fixes to add optional post-install
|
||||||
|
- Fixed: FindBoost versioned find not working
|
||||||
|
- Fix FindCurses to be able to work without ncurses.h
|
||||||
|
- FindQt4 fixed: add a bit more documentation and add ability
|
||||||
|
to specify extra flags to lupdate.
|
||||||
|
- Fixed: make llvm-gcc work, by explicitely excluding
|
||||||
|
"llvm-" from _CMAKE_TOOLCHAIN_PREFIX
|
||||||
|
- Fixed: OS X Framework support: extensionless headers were
|
||||||
|
being ignored when specified as public headers
|
||||||
|
- Fix documentation in CheckCCompilerFlag.cmake
|
||||||
|
- Add better version support to find_package command
|
||||||
|
- Fix Xcode debug not working
|
||||||
|
- Add VERSION compare to if command
|
||||||
|
- Make FindThreads sete THREADS_FOUND
|
||||||
|
- Deb cpack generator sets Installed-Size for the package
|
||||||
|
- Do not add an empty /D"" at the end of VS 6 .dsp compile lines
|
||||||
|
- Recognize /MAP in VS 7 and greater
|
||||||
|
- Add new policy CMP0009 - GLOB_RECURSE should not follow symlinks by
|
||||||
|
default
|
||||||
|
- many other bugfixes - see changelog
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 3 23:46:24 CEST 2008 - dmueller@suse.de
|
Sun Aug 3 23:46:24 CEST 2008 - dmueller@suse.de
|
||||||
|
|
||||||
|
31
cmake.spec
31
cmake.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cmake (Version 2.6.1)
|
# spec file for package cmake (Version 2.6.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -19,15 +19,14 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: cmake
|
Name: cmake
|
||||||
Version: 2.6.1
|
Version: 2.6.2
|
||||||
Release: 19
|
Release: 1
|
||||||
License: BSD 3-Clause
|
License: BSD 3-Clause
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
%define tar_version %version
|
%define tar_version %version
|
||||||
Url: http://www.cmake.org/
|
Url: http://www.cmake.org/
|
||||||
Source0: %{name}-%{tar_version}.tar.bz2
|
Source0: %{name}-%{tar_version}.tar.bz2
|
||||||
Patch0: cmake-2.6.0-use_intree_xmlrpc.patch
|
Patch0: cmake-2.6.0-use_intree_xmlrpc.patch
|
||||||
Patch1: cmake-2.4.7-less_verbosity.patch
|
|
||||||
Patch2: cmake-2.6.0-use_shared_python_lib.patch
|
Patch2: cmake-2.6.0-use_shared_python_lib.patch
|
||||||
Patch4: cmake-disable-builtin-chrpath.diff
|
Patch4: cmake-disable-builtin-chrpath.diff
|
||||||
Summary: Cross-platform, open-source make system
|
Summary: Cross-platform, open-source make system
|
||||||
@ -129,6 +128,30 @@ rm -rf %{buildroot}
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Sep 30 2008 puzel@suse.cz
|
||||||
|
- update to 2.6.2:
|
||||||
|
- Fixed: cpack did not work when sym-linked after install
|
||||||
|
- Add beta BundleUtilities.cmake file
|
||||||
|
- CPackRPM 7435 fixes to add optional post-install
|
||||||
|
- Fixed: FindBoost versioned find not working
|
||||||
|
- Fix FindCurses to be able to work without ncurses.h
|
||||||
|
- FindQt4 fixed: add a bit more documentation and add ability
|
||||||
|
to specify extra flags to lupdate.
|
||||||
|
- Fixed: make llvm-gcc work, by explicitely excluding
|
||||||
|
"llvm-" from _CMAKE_TOOLCHAIN_PREFIX
|
||||||
|
- Fixed: OS X Framework support: extensionless headers were
|
||||||
|
being ignored when specified as public headers
|
||||||
|
- Fix documentation in CheckCCompilerFlag.cmake
|
||||||
|
- Add better version support to find_package command
|
||||||
|
- Fix Xcode debug not working
|
||||||
|
- Add VERSION compare to if command
|
||||||
|
- Make FindThreads sete THREADS_FOUND
|
||||||
|
- Deb cpack generator sets Installed-Size for the package
|
||||||
|
- Do not add an empty /D"" at the end of VS 6 .dsp compile lines
|
||||||
|
- Recognize /MAP in VS 7 and greater
|
||||||
|
- Add new policy CMP0009 - GLOB_RECURSE should not follow symlinks by
|
||||||
|
default
|
||||||
|
- many other bugfixes - see changelog
|
||||||
* Mon Aug 04 2008 dmueller@suse.de
|
* Mon Aug 04 2008 dmueller@suse.de
|
||||||
- update to 2.6.1:
|
- update to 2.6.1:
|
||||||
* Fix for bug 7427, preinstall target name hard coded
|
* Fix for bug 7427, preinstall target name hard coded
|
||||||
|
Loading…
Reference in New Issue
Block a user