summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
Commit message (Collapse)AuthorAgeFilesLines
* BUG: fix for bug 0005767 hang for replace string with emptyBill Hoffman2007-10-121-0/+5
|
* ENH: bad bug badSebastien Barre2007-10-091-1/+1
|
* ENH: speed up actual path name by cache on windowsBill Hoffman2007-10-022-1/+15
|
* COMP: remove warning on new HPUX compilerBill Hoffman2007-09-201-1/+1
|
* COMP: TIOCGWINSZ and struct winsize also doesn't exist on Cray CatamountAlexander Neundorf2007-09-201-1/+4
| | | | Alex
* COMP: make SystemTools.cxx build on Cray Xt3Alexander Neundorf2007-09-201-2/+10
| | | | Alex
* ENH: fix failing test when valgrind is onBill Hoffman2007-09-191-1/+1
|
* ENH: add support for the Portland Compiler to CMake, can build cmake and the ↵Alexander Neundorf2007-09-171-0/+9
| | | | | | tests pass (except the wrapping tests, which fail to link to the g++-compiled Qt) Alex
* BUG: if there is no match, don't construct the stl string from a NULLAlexander Neundorf2007-08-221-1/+8
| | | | | | pointer Alex
* BUG: fix segfault if FindFiles() is called without actual match patternAlexander Neundorf2007-08-211-2/+9
| | | | | | | (e.g. FILE(GLOB /usr/include) instead of FILE(GLOB /usr/include/* ) #4620 Alex
* COMP: Directory and Glob have pointer data membersMathieu Malaterre2007-08-162-0/+7
|
* COMP: Second try getting rid of Microsoft deprecation warnings. This time ↵David Cole2007-08-152-12/+9
| | | | tested from KWStyle with vs8 to make sure the warnings are really gone. Remove the deprecation defs from CMakeLists and guard the defs in the header so we do not redefine them if they are already defined.
* COMP: Suppress Microsoft deprecation warnings when building kwsys .c and ↵David Cole2007-08-151-0/+8
| | | | .cxx files. This way, other projects that include kwsys will not see the warnings in kwsys .c and .cxx files, but they can still see the warnings in their own source files if they want to...
* STYLE: fix typoAlexander Neundorf2007-08-091-1/+1
| | | | Alex
* ENH: Remove extra ;Mathieu Malaterre2007-08-081-15/+15
|
* COMP: fixed compiler warning in sprintf usageSean McBride2007-08-031-1/+1
|
* COMP: also build the static dummy loader on Cray CatamountAlexander Neundorf2007-08-011-1/+2
| | | | Alex
* COMP: add a dynamic loader for systems which don't support dynamic loading, ↵Alexander Neundorf2007-07-301-1/+56
| | | | | | so this is handled in kwsys and not every project using this has to care for it Alex
* ENH: fix resource leakBill Hoffman2007-07-241-4/+5
|
* PERF: micro optimization: the (*pos1) && (*pos1=='/') were redundant, andAlexander Neundorf2007-07-231-2/+1
| | | | | | | hasDoubleSlash is false in most cases, so in most cases 3 comparisons were done, now only one Alex
* COMP: Fix for platforms that do not have siginfo on their signal handlers.Brad King2007-06-271-2/+2
|
* ENH: remove some stuff to improve coverageBill Hoffman2007-06-062-18/+0
|
* ENH: fix case problem with drive letters and cmake vs CMakeSetup build.make ↵Bill Hoffman2007-06-061-0/+10
| | | | changing
* BUG: Added carrot (^) to characters that need quoting. The solaris shell ↵Brad King2007-05-181-1/+1
| | | | needs it.
* BUG: Some single-character arguments need quoting on windows.Brad King2007-05-171-0/+22
|
* ENH: Added more special unix shell characters that require quoting. Added ↵Brad King2007-05-172-7/+18
| | | | escaping of % as %% for shells inside mingw32-make.
* BUG: Shell escaping needs to write % as %% for VS IDE.Brad King2007-05-161-0/+23
|
* BUG: Do not send both SIGSTOP and SIGKILL when killing a process. The ↵Brad King2007-05-161-5/+7
| | | | SIGSTOP seems to be able to block the SIGKILL occasionally. Also the SIGKILL is sufficient since the process table entry will still exist until it is reaped with waitpid.
* COMP: Fix code-not-reached warnings for SunCC.Brad King2007-05-031-1/+7
|
* COMP: Make sure gcc 2.96 sstream header is not used.Brad King2007-04-201-0/+3
|
* COMP: Added istringstream::clear() method to disambiguate the call from ↵Brad King2007-04-201-0/+4
| | | | using string::clear or istrstream::clear.
* BUG: Need to clear read failure when string is reset.Brad King2007-04-191-0/+6
|
* ENH: Added testing for istringstream and stringstream.Brad King2007-04-191-2/+99
|
* BUG: Fix stream state on successfully reading a string.Brad King2007-04-191-1/+1
|
* COMP: Fixes for Watcom.Brad King2007-04-192-0/+17
|
* COMP: Skip testAutoPtr and testHashSTL on Watcom. They are hopeless.Brad King2007-04-191-3/+7
|
* COMP: Need to include header for unlink function.Brad King2007-04-191-4/+16
|
* ENH: Added support for Watcom compiler. Added TODO comment about calling ↵Brad King2007-04-191-4/+30
| | | | conventions.
* ENH: Fixed stl string streaming operators for Watcom.Brad King2007-04-192-4/+15
|
* ENH: Added KWSYSPE_DEBUG macro to print debugging trace information. Added ↵Brad King2007-04-121-1/+54
| | | | TODO comment explaining why process execution can still hang when a grandchild keeps the output pipes open.
* ENH: Added MD5 implementation to KWSys.Brad King2007-03-144-2/+697
|
* ENH: Added kwsys SystemTools::CreateSymlink and SystemTools::ReadSymlink.Brad King2007-03-122-0/+50
|
* COMP: Fix warning about binding reference-to-non-const to an rvalue on VS6. ↵Brad King2007-03-091-17/+20
| | | | It does not seem to be doing the proper auto_ptr_ref conversions. Instead use the const_cast work-around on this platform.
* COMP: Fixed unreferenced parameter warning for VS6 with /W4.Brad King2007-03-091-1/+5
|
* STYLE: Move warning disable pragma into push/pop block.Brad King2007-03-071-5/+1
|
* BUG: Use angle-brackets to include testSystemTools.h to avoid problems with ↵Brad King2007-03-072-2/+6
| | | | in-source builds.
* ENH: Enabled support for use_auto_ptr(get_auto_ptr()) syntax on HP compiler.Brad King2007-03-072-21/+47
|
* COMP: shut up w4 warningKen Martin2007-03-061-0/+5
|
* COMP: Disable function call with function return test for HP until it is ↵Brad King2007-03-041-0/+2
| | | | implemented.
* COMP: All kwsys .hxx headers should include Configure.hxx. Re-enabling ↵Brad King2007-03-032-1/+3
| | | | testAutoPtr.