Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-12 | 1 | -1/+1 |
| | |||||
* | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-11 | 1 | -1/+1 |
| | |||||
* | Merge topic 'libarchive-wrapper' | Brad King | 2010-08-10 | 5 | -128/+356 |
|\ | | | | | | | | | | | | | | | | | aef6723 cmArchiveWrite: Fix signed/unsigned compare/convert 1b5b2ed Include entries for directories in tarballs (#11020) c7c9009 Create class cmArchiveWrite to wrap libarchive (#11020) ac26737 Merge branch 'system-libarchive-include' into libarchive-wrapper 3296e6a Include headers from chosen libarchive (#10923) | ||||
| * | cmArchiveWrite: Fix signed/unsigned compare/convert | Brad King | 2010-08-09 | 1 | -4/+8 |
| | | | | | | | | | | | | | | | | The libarchive interface accepts size_t but returns ssize_t. The std streams interface wants streamsize, which is typically ssize_t. Since no one type for our variable matches without conversions, make the conversions explicit to avoid -Wsign-conversion and -Wsign-compare warnings. | ||||
| * | Include entries for directories in tarballs (#11020) | Brad King | 2010-08-06 | 1 | -123/+22 |
| | | | | | | | | | | | | Use libarchive through class cmArchiveWrite to implement the method cmSystemTools::CreateTar. The class includes entries for directories by automatically traversing the tree on disk. | ||||
| * | Create class cmArchiveWrite to wrap libarchive (#11020) | Brad King | 2010-08-06 | 3 | -0/+328 |
| | | |||||
| * | Merge branch 'system-libarchive-include' into libarchive-wrapper | Brad King | 2010-08-05 | 2 | -5/+2 |
| |\ | |||||
| | * | Include headers from chosen libarchive (#10923) | Brad King | 2010-08-05 | 2 | -5/+2 |
| | | | | | | | | | | | | | | | When CMAKE_USE_SYSTEM_LIBARCHIVE is on we must include the system libarchive headers to match the library that will be linked. | ||||
* | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-10 | 1 | -1/+1 |
| | | | |||||
* | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-09 | 1 | -1/+1 |
| | | | |||||
* | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-08 | 1 | -1/+1 |
| | | | |||||
* | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-07 | 1 | -1/+1 |
| | | | |||||
* | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-06 | 1 | -1/+1 |
|/ / | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-05 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-04 | 1 | -1/+1 |
| | | |||||
* | | Merge topic 'fix-cmake-self-references' | Brad King | 2010-08-03 | 1 | -3/+3 |
|\ \ | | | | | | | | | | | | | df1e00f Refer to self with CMake_(SOURCE|BINARY)_DIR (#10046) | ||||
| * | | Refer to self with CMake_(SOURCE|BINARY)_DIR (#10046) | Brad King | 2010-07-29 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | This is good practice, and is necessary to support building CMake as a subdirectory of another project. | ||||
* | | | Merge topic 'CPackDEB-auto-dependency-support' | Brad King | 2010-08-03 | 1 | -2/+8 |
|\ \ \ | | | | | | | | | | | | | | | | | ded3a15 CPackDeb optionally generates auto-dependency list part fix of bug 10292 | ||||
| * | | | CPackDeb optionally generates auto-dependency list part fix of bug 10292 | Eric NOULARD | 2010-07-28 | 1 | -2/+8 |
| | |/ | |/| | | | | | | | | | | The default behavior is not to activate this option because it may break DEB package building for project who does not use INSTALL RPATH. | ||||
* | | | Merge topic 'CPackDEB-wrong-install-size' | Brad King | 2010-08-03 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | | | | | | | | | 5495a6d CPackDEB: merge wrong installed size patch. see bugs 10296 (and 10292) | ||||
| * | | | CPackDEB: merge wrong installed size patch. see bugs 10296 (and 10292) | Eric NOULARD | 2010-07-28 | 1 | -1/+1 |
| |/ / | |||||
* | | | Merge topic 'ctest-git-flexibility' | Brad King | 2010-08-03 | 2 | -2/+87 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | a7319cf ctest_update: Run 'git submodule' at top level 7bf8dc1 ctest_update: Support ".git file" work trees 65cb72f ctest_update: Abort if Git FETCH_HEAD has no candidates | ||||
| * | | | ctest_update: Run 'git submodule' at top level | Brad King | 2010-07-27 | 2 | -1/+25 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The git submodule porcelain must be executed from the top level of the work tree. Use 'git rev-parse --show-cdup' to find the top level relative to the source tree. This is better than searching up the tree for .git ourselves because it will always work the same way Git does and thus honors settings like GIT_DISCOVERY_ACROSS_FILESYSTEM. | ||||
| * | | | ctest_update: Support ".git file" work trees | Brad King | 2010-07-26 | 2 | -1/+56 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit c3781efb (Support Git upstream branch rewrites, 2010-06-08) assumed that ".git/FETCH_HEAD" exists inside the source tree. Fix the implementation to handle a work tree using a ".git file" to link to its repository. Use "git rev-parse --git-dir" to locate the real .git dir. | ||||
| * | | | ctest_update: Abort if Git FETCH_HEAD has no candidates | Brad King | 2010-07-20 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | If .git/FETCH_HEAD provides no merge candidate do not attempt to update. Also log FETCH_HEAD lines as we parse them since they are essentially output from the git fetch command. | ||||
* | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-03 | 1 | -1/+1 |
| | | | | |||||
* | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-02 | 1 | -1/+1 |
| | | | | |||||
* | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-08-01 | 1 | -2/+2 |
| | | | | |||||
* | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-31 | 1 | -1/+1 |
| | | | | |||||
* | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-30 | 1 | -1/+1 |
| |_|/ |/| | | |||||
* | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-29 | 1 | -1/+1 |
| |/ |/| | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-28 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-27 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-26 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-25 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-24 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-23 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-22 | 1 | -1/+1 |
| | | |||||
* | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-21 | 1 | -1/+1 |
| | | |||||
* | | Merge topic 'resolve/doc-spelling/CPackRPM' | Brad King | 2010-07-20 | 14 | -18/+18 |
|\ \ | | | | | | | | | | | | | | | | 7739d78 Merge CPackRPM changes into doc-spelling 9203e91 Fix spelling errors reported by Lintian. | ||||
| * \ | Merge CPackRPM changes into doc-spelling | Brad King | 2010-07-13 | 11 | -52/+55 |
| |\ \ | | | | | | | | | | | | | | | | | Conflicts: Modules/CPackRPM.cmake | ||||
| * | | | Fix spelling errors reported by Lintian. | Kai Wasserbäch | 2010-07-13 | 14 | -18/+18 |
| | | | | | | | | | | | | | | | | | | | | During a Lintian run on the binary packages of CMake in Debian I was notified of many spelling mistakes. | ||||
* | | | | Merge topic 'guid_vs_newname' | Brad King | 2010-07-20 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | 8507a73 Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid | ||||
| * | | | | Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid | Bill Hoffman | 2010-07-13 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-20 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-19 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-18 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-17 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-16 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | KWSys Nightly Date Stamp | KWSys Robot | 2010-07-15 | 1 | -1/+1 |
| | | | | |