summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/System.c
Commit message (Collapse)AuthorAgeFilesLines
* 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-171-6/+12
| | | | escaping of % as %% for shells inside mingw32-make.
* BUG: Shell escaping needs to write % as %% for VS IDE.Brad King2007-05-161-0/+23
|
* ENH: Adding support for # escape in Watcom WMake.Brad King2006-10-251-4/+31
|
* ENH: Added # character for shell escaping.Brad King2006-10-231-1/+1
|
* ENH: Adding Shell_Flag_EchoWindows option to setup escapes for arguments to ↵Brad King2006-10-041-0/+14
| | | | 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: Re-implemented command line argument shell quoting to support several ↵Brad King2006-09-271-76/+351
| | | | platforms with one code base.
* BUG: Windows_ShellArgument: need to escape if the string contains one of a ↵Brad King2006-09-211-24/+29
| | | | set of special characters as well as spaces. Moved test for needing escapes to a separate method kwsysSystemWindowsShellArgumentNeedsEscape.
* ENH: Adding 'System' component of C sources to hold system tools written in ↵Brad King2006-09-211-0/+166
C. Moved windows shell command line argument escaping code to kwsysSystem_Windows_ShellArgument and kwsysSystem_Windows_ShellArgumentSize.