- Oct 17, 2008
-
-
Brad King authored
KWSys component dependencies must be enforced before any tests for enabled components are done. This moves the dependency enforcement code to be as early as possible.
-
Sebastien Barre authored
-
- Oct 16, 2008
-
-
Sebastien Barre authored
-
Sebastien Barre authored
-
- Oct 15, 2008
-
-
Sebastien Barre authored
-
- Oct 10, 2008
-
-
Brad King authored
See issue #7797.
-
- Sep 27, 2008
-
-
Brad King authored
In SharedForward, the call to execvp warned on MinGW because the signature declared in process.h has an extra const. We use an explicit cast to convert the pointer type.
-
- Sep 26, 2008
-
-
Brad King authored
This tests the basic capability of running another executable from the build tree.
-
Brad King authored
The windows execvp function does not re-escape arguments correctly. Instead we generate the escape sequences before calling it.
-
Brad King authored
To detect when the launcher is running from the build tree we now test if the directory containing it is the same as the build-tree directory using an inode test instead of string comparison. This makes it more robust on case-insensitive filesystems and other quirky situations.
-
Brad King authored
In SharedForward we are only dealing with command-line-length strings so we need not worry about integer overflow.
-
- Sep 23, 2008
-
-
Bill Hoffman authored
-
- Sep 22, 2008
-
-
Bill Hoffman authored
-
- Sep 15, 2008
-
-
Bill Hoffman authored
-
- Sep 11, 2008
-
-
David Cole authored
ENH: Improve FILE GLOB_RECURSE handling of symlinks with a new CMake policy. CMP0009 establishes NEW default behavior of not recursing through symlinks. OLD default behavior or explicit FOLLOW_SYMLINKS argument to FILE GLOB_RECURSE will still recurse through symlinks.
-
- Aug 20, 2008
-
-
David Cole authored
ENH: Add RecurseThroughSymlinks data member to kwsys::Glob. Allows recursive globs to skip symlinks when necessary. Default to true for backwards compatible behavior. Used from the ctest coverage handler to avoid recursing through the '/Applications' directory on the Mac looking for *.da files... Should fix the hangs reported recently by Mac CMake dashboard submitters.
-
Brad King authored
According to "man select" on Linux it is possible that select() lies about data being ready on a pipe in some subtle cases. We deal with this by switching to non-blocking i/o and checking for EAGAIN. See issue #7180.
-
- Jul 10, 2008
-
-
Bill Hoffman authored
-
- Jul 09, 2008
-
-
Bill Hoffman authored
-
- Jun 06, 2008
-
-
Brad King authored
- Patch from Matthew McCormick, slightly tweaked - See issue #6833
-
- Jun 02, 2008
-
-
Clinton Stimpson authored
BUG: FormatMessage can return a NULL message. Add check for NULL pointer.
-
- Jun 01, 2008
-
-
Bill Hoffman authored
-
Bill Hoffman authored
-
Francois Bertel authored
BUG:cpuinfo format are different between Linux and Cygwin. Cygwin does not have physical id tag or cpu cores tag.
-
Bill Hoffman authored
ENH: avoid divide by zero, temporary fix until cygwin cpu file is read better, bad cpu info is better than a crash
-
- May 31, 2008
-
-
Francois Bertel authored
BUG:Fixed NumberOfLogicalCPU, NumberOfPhysicalCPU and LogicalProcessorsPerPhysical under Linux. Some part was just wrong. Some other part missed to take the multicore value into account.
-
- May 27, 2008
-
-
Brad King authored
- Add an argument to registry read/write/delete methods to specify a 32-bit or 64-bit view. - Default is the bit-ness of the running program. - See issue #7095.
-
- May 16, 2008
-
-
Brad King authored
-
- May 14, 2008
-
-
Brad King authored
- Tells CMake about the KWSYS_HEADER macro. - Enables implicit dependencies of private source files. - When a CMake new enough to support the property is required the "#if 0" hack can be removed from the source files.
-
- May 13, 2008
-
-
Brad King authored
- Patch from Pierre Habouzit
-
Mathieu Malaterre authored
ENH: all ctype function have the same issue: char can be signed or unsigned, since isspace only deal with >=0 value (except EOF) one has to first cast it to unsigned char
-
- May 12, 2008
-
-
Bill Lorensen authored
-
- May 10, 2008
-
-
Bill Lorensen authored
COMP: sprintf warnings. DWORD should use %ld rather than %d. Also, const char *p, a shadowed variable warning.
-
- May 02, 2008
-
-
Bill Hoffman authored
-
Bill Hoffman authored
-
Bill Hoffman authored
-
Brad King authored
- Remove two unused variables. - Replace dynamically allocated array with static.
-
- Apr 30, 2008
- Apr 24, 2008
-
-
Bill Hoffman authored
-