summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Fix required permissions check for dir copyBrad King2009-04-271-1/+1
| | | | | While copying a directory the destination must have owner rwx permissions. This corrects our check.
* STYLE: Nightly Date StampBrad King2009-04-271-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-261-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-251-1/+1
|
* ENH: vms fixBill Hoffman2009-04-241-0/+2
|
* ENH: update vms bootBill Hoffman2009-04-241-4/+8
|
* ENH: Test spaces in non-string preprocessor valuesBrad King2009-04-241-1/+1
| | | | | | | This extends the Preprocessor test to put spaces in the value of a definition that is not a quoted string. In particular this tests that VS6 supports values with spaces if they do not have '"', '$', or ';'. See issue #8779.
* ENH: Support more preprocessor values in VS6Brad King2009-04-244-8/+18
| | | | | | | | | Previously we rejected all preprocessor definition values containing spaces for the VS6 IDE generator. In fact VS6 does support spaces but not in combination with '"', '$', or ';', and only if we use the sytnax '-DNAME="value with spaces"' instead of '-D"NAME=value with spaces"'. Now we support all definition values that do not have one of these invalid pairs. See issue #8779.
* STYLE: Nightly Date StampBrad King2009-04-241-1/+1
|
* ENH: check in almost building VMS stuff with VMSBuild directory since the ↵Bill Hoffman2009-04-2330-3/+3713
| | | | bootstrap script will not work on VMS
* BUG: Fix CTest.UpdateGIT test for older gitBrad King2009-04-231-1/+1
| | | | | Older git versions do not support 'git init --bare', so we instead use the more proper 'git --bare init'.
* STYLE: Nightly Date StampBrad King2009-04-231-1/+1
|
* COMP: Fix class reference for HP aCCBrad King2009-04-221-1/+1
|
* ENH: Teach CTest to handle git repositoriesBrad King2009-04-228-1/+681
| | | | | | | This creates cmCTestGIT to drive CTest Update handling on git-based work trees. Currently we always update to the head of the remote tracking branch (git pull), so the nightly start time is ignored for Nightly builds. A later change will address this. See issue #6994.
* ENH: Factor global-VC parts out of cmCTestSVNBrad King2009-04-225-114/+213
| | | | | | This factors parts of the svn update implementation that are useful for any globally-versioning vcs tool into cmCTestGlobalVC. It will allow the code to be shared among the support classes for most vcs tools.
* COMP: Fix calls to superclass methods for BorlandBrad King2009-04-221-4/+4
| | | | | | The superclass of cmSystemTools is cmsys::SystemTools, which should be referencable by just SystemTools from inside the class. Borland C++ does not seem to support this, so we use cmSystemTools instead.
* STYLE: Nightly Date StampBrad King2009-04-221-1/+1
|
* ENH: also recognize rxvt-256color as a color terminal (#8913, patch from ↵Alexander Neundorf2009-04-211-0/+1
| | | | | | Deewiant) Alex
* ENH: search also for mpeg2dec/mpeg2.h, as the documentation says, and as itAlexander Neundorf2009-04-211-2/+4
| | | | | | | is also installed by plain libmpeg2 (#8455) Also mark the variables as advanced. Alex
* ENH: make sure tests for cpack are run correctlyBill Hoffman2009-04-211-1/+1
|
* ENH: make sure tests for cpack are run correctlyBill Hoffman2009-04-211-2/+2
|
* ENH: make sure tests for cpack are run correctlyBill Hoffman2009-04-211-1/+1
|
* ENH: make sure tests for cpack are run correctlyBill Hoffman2009-04-211-2/+2
|
* ENH: add even more search directories for debian-like systems (see #8821)Alexander Neundorf2009-04-211-2/+8
| | | | Alex
* ENH: add one more search directory (see #8919)Alexander Neundorf2009-04-211-0/+1
| | | | Alex
* BUG: Avoid infinite loop at directory tree rootBrad King2009-04-211-1/+3
| | | | | | The system tools GetParentDirectory method no longer removes the root path component. This fixes cmSystemTools::FileExistsInParentDirectories to not infinitely loop at when GetParentDirectory stops at the root.
* ENH: Remove obscure method from KWSys SystemToolsBrad King2009-04-214-31/+31
| | | | | This removes SystemTools::FileExistsInParentDirectories from KWSys since it is a special-purpose method that is not generally useful.
* STYLE: Nightly Date StampBrad King2009-04-211-1/+1
|
* BUG: Fix SystemTools::IsSubDirectory on bad inputBrad King2009-04-201-0/+4
| | | | | | | | When SystemTools::GetParentDirectory was fixed to never remove the root path component from a full path we violated an assumption made by IsSubDirectory that eventually GetParentDirectory returns an empty string. This led to an infinite loop if the potential parent directory is empty, so we explicitly avoid that case.
* STYLE: Nightly Date StampBrad King2009-04-201-1/+1
|
* STYLE: fix typos in the docsAlexander Neundorf2009-04-194-8/+8
| | | | Alex
* STYLE: fix typos in the docsAlexander Neundorf2009-04-198-11/+11
| | | | Alex
* STYLE: Nightly Date StampBrad King2009-04-191-1/+1
|
* BUG: fix cmake so that if you configure with a bad env for cl, then with a ↵Bill Hoffman2009-04-182-0/+10
| | | | good path, it will configure correctly
* STYLE: Nightly Date StampBrad King2009-04-181-1/+1
|
* ENH: make sure CTEST_CURL_OPTIONS work from script modeBill Hoffman2009-04-172-0/+5
|
* STYLE: Nightly Date StampBrad King2009-04-171-1/+1
|
* BUG: Path lengths in combo box for binary directory was forcing a minimum sizeClinton Stimpson2009-04-161-3/+1
| | | | on the main window. Fixed that.
* STYLE: Nightly Date StampBrad King2009-04-161-1/+1
|
* BUG: Replace brittle GetParentDirectory implBrad King2009-04-151-25/+1
| | | | | | | The previous change to this method broke cases where the input path does not exist. The SystemTools::GetParentDirectory method is redundant with the more robust SystemTools::GetFilenamePath. This replaces its implementation to just call GetFilenamePath.
* COMP: Fix BOOL to bool conversion warningBrad King2009-04-151-3/+3
| | | | | | The cmSystemTools::RenameFile method returns type bool, but its implementation on Windows returns the result of an API function that returns BOOL. This change avoids the compiler warning.
* BUG: SystemTools::GetParentDirectory() will crash if "/" is passed in as ↵Yumin Yuan2009-04-151-1/+7
| | | | argement. Valid check is added to make sure the input argment exists, and if "/" is passed in, empty string will be returned.
* ENH: Create command line api "cmake -E rename"Brad King2009-04-151-0/+16
| | | | | | This extends the "-E" command line mode with a "rename old new" signature. The new command atomically renames a file or directory within a single disk volume.
* ENH: Create file(RENAME) command modeBrad King2009-04-153-1/+51
| | | | | This creates command "file(RENAME <oldname> <newname>)" to rename a file or directory within a single disk volume.
* ENH: Move RenameFile to cmSystemToolsBrad King2009-04-153-53/+55
| | | | | | This moves the cmGeneratedFileStream::RenameFile method implementation into cmSystemTools. It works only within a single filesystem volume, but is atomic when the operating system permits.
* STYLE: Nightly Date StampBrad King2009-04-151-1/+1
|
* ENH: Skip KWSys name maros in case of identityBrad King2009-04-149-235/+264
| | | | | | | | | | | | | All KWSys C symbol names begin with the KWSYS_NAMESPACE defined at configuration time. For ease of editing we write canonical names with the prefix 'kwsys' and use macros to map them to the configured prefix at preprocessing time. In the case of standalone KWSys, the prefix is 'kwsys', so the macros were previously defined to their own names. We now skip defining the macros in the identity case so that the final symbol names are never themselves macros. This will allow the symbols to be further transformed behind the scenes to help linkers in special cases on some platforms.
* ENH: New function for determining Visual Studio service packPhilip Lowman2009-04-141-0/+81
|
* STYLE: Nightly Date StampBrad King2009-04-141-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-131-1/+1
|