summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
Commit message (Collapse)AuthorAgeFilesLines
* COMP: fix warningsKen Martin2007-03-021-2/+2
|
* COMP: More workarounds for Borland.Brad King2007-03-021-3/+6
|
* COMP: fix warningKen Martin2007-03-011-1/+1
|
* ENH: added a limit to the getline methodKen Martin2007-03-012-2/+22
|
* BUG: Assignment should always use reset().Brad King2007-02-281-1/+1
|
* COMP: Fix for auto_ptr_ref on Borland 5.8.Brad King2007-02-281-5/+10
|
* COMP: Added line accidentally removed.Brad King2007-02-261-0/+1
|
* BUG: Fixed implementation of auto_ptr_ref.Brad King2007-02-261-2/+1
|
* BUG: Fix bug#4482.Brad King2007-02-221-1/+12
|
* COMP: remove warningBill Hoffman2007-02-221-1/+0
|
* ENH: fix parens in the path with spaces in the pathBill Hoffman2007-02-221-16/+3
|
* COMP: Disable LFS on AIX.Brad King2007-02-211-1/+7
|
* STYLE: Removed one more stray comment.Brad King2007-02-011-2/+0
|
* STYLE: removed code accidently checked inKen Martin2007-02-011-14/+1
|
* BUG: fix for bug number 3320Ken Martin2007-02-011-3/+33
|
* ENH: allow copy if different from a file to a directory to workBill Hoffman2007-01-301-2/+24
|
* STYLE: Fix typoMathieu Malaterre2007-01-271-1/+1
|
* BUG: Added use of KWSYS_INSTALL_COMPONENT_NAME_DEVELOPMENT for header file ↵Brad King2007-01-261-6/+20
| | | | install rules.
* ENH: Add support for "~otheruser/"Clinton Stimpson2007-01-161-9/+51
|
* ENH: Handle "~" in SplitPath.Clinton Stimpson2007-01-121-0/+13
|
* STYLE: Fixed documentation of how to produce forwarding executables for ↵Brad King2007-01-081-13/+18
| | | | multi-configuration builds with CMAKE_INTDIR.
* BUG: reverting previous change.Utkarsh Ayachit2006-12-211-0/+1
|
* BUG: When a "wrong argument" was detected, we call the WrongArgument ↵Utkarsh Ayachit2006-12-211-1/+0
| | | | handler. If the handler returns success, the argument parsing should continue. Currently, it was stopping parsing immediately after the wrong argument was processed, irrespective of the WrongArgument handler status. Fixed that.
* BUG: FileIsDirectory would remove the trailing '/' even when the path is ↵Utkarsh Ayachit2006-12-181-1/+2
| | | | indeed the root i.e. '/'. Hence the test would be incorrect for root directory. Fixed that.
* COMP: Fix compilation when VS6 is using the new ANSI stdlibMathieu Malaterre2006-12-181-0/+5
|
* COMP: Try to get stringstream emulation workingMathieu Malaterre2006-12-151-1/+1
|
* ENH: Adding stringstream compatibility implementation. It is currently ↵Brad King2006-12-141-2/+39
| | | | identical to ostringstream. Fixed local variable pcount hiding method warning.
* BUG: Remove stringstream implementation, this was a wrong interface anyway.Mathieu Malaterre2006-12-142-44/+3
|
* BUG: disable test for nowMathieu Malaterre2006-12-141-2/+3
|
* ENH: provide stringstream too. FIX: warning shadow varMathieu Malaterre2006-12-132-3/+43
|
* BUG: revert yesterday patch. The implementation was correct. The problem was ↵Mathieu Malaterre2006-12-093-8/+9
| | | | that _WIN32 was forced to be #define on cygwin when included from ITK, which was miss matching the implementation from the declaration. Put extra condition for CYGWIN system
* BUG: Make sure to use the Win32 interface (HINSTANCE) for handling shared ↵Mathieu Malaterre2006-12-083-4/+6
| | | | lib on cygwin and mingw system
* COMP: remove warningBill Hoffman2006-12-051-1/+0
|
* ENH: fix build error on IRIXBill Hoffman2006-12-051-2/+2
|
* ENH: merge in changes for beos supportBill Hoffman2006-12-044-2/+147
|
* ENH: Changes based on patch from Ryan C. Gordon to enable process execution ↵Brad King2006-12-042-149/+382
| | | | on BeOS. There seems to be no way to implement it without polling (or threads).
* BUG: Fix problem with loading dylib on Tiger (10.4) x86. We need to be using ↵Mathieu Malaterre2006-11-292-14/+6
| | | | the dlopen/dlclose instead of the old NSModule
* ENH: Adding support for # escape in Watcom WMake.Brad King2006-10-252-5/+37
|
* ENH: Added # character for shell escaping.Brad King2006-10-231-1/+1
|
* BUG: Correct the SystemReportDebugHook function. It should not call exit. It ↵David Cole2006-10-191-5/+5
| | | | gets called multiple times at shutdown in a memory leak reporting scenario... This is the source of the long standing KWWidgetsTour debug build dashboard failure.
* ENH: Report command line as a measurement and allow user to add custom ↵Andy Cedilnik2006-10-131-0/+1
| | | | measurements
* COMP: Fix or suppress warnings on Borland and Mac dashboards. Definitely fix ↵David Cole2006-10-091-0/+1
| | | | "may be used uninitialized" warnings.
* STYLE: Make the set of supported STL headers the same in vtkstd and ↵David Cole2006-10-061-2/+19
| | | | vtksys/stl. (The union of the present values of the two sets.)
* ENH: Adding Shell_Flag_EchoWindows option to setup escapes for arguments to ↵Brad King2006-10-042-1/+20
| | | | the native echo command in a shell. This special case is needed to avoid adding quotes when passing text to echo in a native windows shell which does no command line parsing at all.
* ENH: Adding tests KWSYS_C_HAS_PTRDIFF_T and KWSYS_C_HAS_SSIZE_T to help ↵Brad King2006-10-043-11/+59
| | | | ProcessUNIX.c build everywhere without warnings.
* BUG: Name of C test file ends in .c not .cxx.Brad King2006-10-041-1/+1
|
* ENH: Renamed kwsysPlatformCxxTests to kwsysPlatformTests and generalized it ↵Brad King2006-10-044-10/+70
| | | | for multiple language tests (C and CXX).
* ENH: check for empty pathBill Hoffman2006-10-031-0/+4
|
* ENH: make sure value is set before using itBill Hoffman2006-10-031-1/+1
|
* BUG: Need to initialize to not use native pipes.Brad King2006-10-031-0/+8
|