summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* KWSys Nightly Date StampKWSys Robot2011-06-071-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-06-061-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-06-051-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-06-041-1/+1
|
* KWSys Nightly Date StampKWSys Robot2011-06-031-1/+1
|
* Merge topic 'file-DOWNLOAD-low-speed-timeout'Brad King2011-06-022-4/+51
|\ | | | | | | | | faa7ec6 Teach file(DOWNLOAD|UPLOAD) to timeout after inactivity
| * Teach file(DOWNLOAD|UPLOAD) to timeout after inactivityBrad King2011-06-012-4/+51
| | | | | | | | | | Add option INACTIVITY_TIMEOUT to terminate the operation if there is no progress for more than a given amount of time.
* | Merge topic 'fix-Xcode-spelling-issue-12231'Brad King2011-06-022-5/+5
|\ \ | | | | | | | | | | | | a27edd8 Fix XCode -> Xcode typos, notably in man page (#12231)
| * | Fix XCode -> Xcode typos, notably in man page (#12231)Sean McBride2011-05-312-5/+5
| | |
* | | Merge topic 'aix-gcc-2.9-issue-12233'Brad King2011-06-021-1/+1
|\ \ \ | | | | | | | | | | | | | | | | a4cba0e Fix plugin API for gcc 2.9-aix51-020209 (#12233)
| * | | Fix plugin API for gcc 2.9-aix51-020209 (#12233)Daniel R. Gomez2011-05-311-1/+1
| | | | | | | | | | | | | | | | Use proper C function prototype syntax to satisfy this compiler.
* | | | Merge topic 'fix-10740-update-string-docs'Brad King2011-06-022-2/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | ecdad65 CMake: Update documentation of STRING(SUBSTRING) for length -1 (#10740)
| * | | | CMake: Update documentation of STRING(SUBSTRING) for length -1 (#10740)Rolf Eike Beer2011-05-272-2/+3
| | | | |
* | | | | Merge topic 'dont-compress-memcheck-output'Brad King2011-06-025-14/+107
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0e591ed Fix type conversion warning 9c3a0b9 We will actually compress memcheck output if the server supports it. 8024c53 Dynamic analysis test output should not be compressed.
| * | | | | Fix type conversion warningZach Mullen2011-05-271-1/+1
| | | | | |
| * | | | | We will actually compress memcheck output if the server supports it.Zach Mullen2011-05-265-13/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change won't be functional until the next release of CDash due to the version comparison.
| * | | | | Dynamic analysis test output should not be compressed.Zach Mullen2011-04-291-2/+3
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-06-021-1/+1
| | | | | |
* | | | | | KWSys Nightly Date StampKWSys Robot2011-06-011-2/+2
| |_|_|_|/ |/| | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-05-311-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-05-301-1/+1
| | | | |
* | | | | KWSys Nightly Date StampKWSys Robot2011-05-291-1/+1
| |_|/ / |/| | |
* | | | KWSys Nightly Date StampKWSys Robot2011-05-281-1/+1
| |_|/ |/| |
* | | KWSys Nightly Date StampKWSys Robot2011-05-271-1/+1
| |/ |/|
* | KWSys Nightly Date StampKWSys Robot2011-05-261-1/+1
| |
* | KWSys Nightly Date StampKWSys Robot2011-05-251-1/+1
| |
* | Merge topic 'output-compile-lines'Brad King2011-05-246-45/+159
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cdc2b41 Fix CompileCommandOutput test build on Windows 7039d1f Fix CompileCommandOutput test for Make tools not supporting spaces 4268e3d run_compile_commands: Cast istream::get() result to char c45c60b run_compile_commands: Avoid extra stl vector conversion 7c5be51 run_compile_commands: Avoid shadow in std::map<>::at workaround 169bb05 Provide std::map<>::at for use in run_compile_commands 4e2185c Make std::map usage more portable in language=>flags/defines maps a7e7a04 Fix run_compile_commands build on Apple GCC 3.3 c9174c0 Fix signed/unsigned comparison in EscapeJSON 8346a28 Only offer the compile command output feature on unix systems 0e6b05f Adds a test for the compile command line output. 5674844 make compile command output optional fe07b05 implement cxx command output 65c0c24 cache flags and defines 3f064ef refactor flags and defines
| * | run_compile_commands: Avoid extra stl vector conversionBrad King2011-05-182-0/+18
| | | | | | | | | | | | | | | | | | | | | The Sun compiler does not provide the proper vector constructor to initialize it from an iterator pair of a non-matching type. Extend the ParseUnixCommandLine API to provide a vector of the proper type so no conversion is needed.
| * | Make std::map usage more portable in language=>flags/defines mapsBrad King2011-05-172-16/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Older versions of GCC, the HP compiler, and the SGI MIPSpro compiler do not like the use of make_pair in this case and the conversions it requires: a value of type "const char *" cannot be used to initialize an entity of type "char [1]" /usr/include/g++-3/stl_pair.h:68: assignment of read-only location Instead use a map lookup pattern already used throughout the rest of our source tree.
| * | Fix signed/unsigned comparison in EscapeJSONBrad King2011-05-161-1/+1
| | |
| * | make compile command output optionalManuel Klimek2011-04-252-2/+3
| | |
| * | implement cxx command outputManuel Klimek2011-04-253-2/+66
| | |
| * | cache flags and definesManuel Klimek2011-04-252-45/+54
| | |
| * | refactor flags and definesManuel Klimek2011-04-252-55/+68
| | |
* | | Merge topic 'fix-11925-vcxproj-filters-mismatch'Brad King2011-05-241-5/+5
|\ \ \ | | | | | | | | | | | | | | | | a6b52bd VS10: Write header-only files in correct xml element (#11925)
| * | | VS10: Write header-only files in correct xml element (#11925)David Cole2011-05-231-5/+5
| | | |
* | | | Merge topic 'string-RANDOM-seed'Brad King2011-05-243-3/+76
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7ff98b7 Fix forced-seed argument type in string(RANDOM) 3d92c8c Explicitly cast time value in cmSystemTools::RandomSeed eb6f461 VS 6: Define _WIN32_WINNT to load wincrypt.h correctly e1b0a11 Improve string(RANDOM) default seed
| * | | | Fix forced-seed argument type in string(RANDOM)Brad King2011-05-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clang points out that local variable 'seed' needs to be "unsigned int": Source/cmStringCommand.cxx:828:21: warning: operands of ? are integers of different signs: 'int' and 'unsigned int' [-Wsign-compare] srand(force_seed? seed : cmSystemTools::RandomSeed()); ^ ~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
| * | | | Explicitly cast time value in cmSystemTools::RandomSeedBrad King2011-05-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use static_cast to avoid warnings like conversion to ‘unsigned int’ from ‘__time_t’ may alter its value conversion to ‘unsigned int’ from ‘__suseconds_t’ may alter its value We do not care if the value is truncated because we are looking for just 32 bits anyway.
| * | | | VS 6: Define _WIN32_WINNT to load wincrypt.h correctlyBrad King2011-05-181-0/+6
| | | | |
| * | | | Improve string(RANDOM) default seedBrad King2011-05-173-2/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The naive time(0) seed is unique only within one second. Instead try to read a real source of entropy and otherwise fall back to a combination of the process id and high-resolution time.
* | | | | Merge topic 'doc-output_required_files'Brad King2011-05-241-2/+11
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 5cf4ff6 Document status of output_required_files command (#12214)
| * | | | | Document status of output_required_files command (#12214)Brad King2011-05-231-2/+11
| | |/ / / | |/| | | | | | | | | | | | | | | | | | This command is barely functional and exists only for historical reasons. State this in the documentation.
* | | | | Merge topic 'fix-cpack-osxx11-perms'Brad King2011-05-241-0/+27
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 0fb388c Ensure executable files have executable permissions.
| * | | | | Ensure executable files have executable permissions.Wesley Turner2011-05-161-0/+27
| | |/ / / | |/| | | | | | | | | | | | | | | | | | Fix the OSX X11 CPack generator to make sure the installer that it generates contains executable files.
* | | | | Merge topic 'rule-messages'Brad King2011-05-242-93/+73
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | dca304e Merge branch 'MakeCodeBlocksGeneratorNonVerbose2' into rule-messages 051cee0 Revert "Honor RULE_MESSAGES property for build target messages" (#12190)
| * \ \ \ \ Merge branch 'MakeCodeBlocksGeneratorNonVerbose2' into rule-messagesBrad King2011-05-1619-670/+313
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Source/cmGlobalUnixMakefileGenerator3.cxx Source/cmGlobalUnixMakefileGenerator3.h
| * | | | | | Revert "Honor RULE_MESSAGES property for build target messages" (#12190)Brad King2011-05-162-92/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit dc36b3499403bad323d7300139fbf459c31f7a2c. It broke dependency logic instead of only silencing messages. Revert to previous behavior.
* | | | | | | Merge topic 'intel-12-vs-2005'Brad King2011-05-241-3/+7
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3a8add0 ENH: Fix Intel 12 plugin project generation for VS < 10
| * | | | | | | ENH: Fix Intel 12 plugin project generation for VS < 10Brad King2011-05-161-3/+7
| | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | Suggested-by: Dick Munroe <munroe@csworks.com>