summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
Commit message (Collapse)AuthorAgeFilesLines
* STYLE: Nightly Date StampBrad King2007-11-261-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-251-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-241-1/+1
|
* ENH: add support for the Syllable OS (http://www.syllable.org)Alexander Neundorf2007-11-242-2/+15
| | | | | | | | | | | major issues: -access() doesn't return false for an empty string (#ifdefed in cmake) -dlopen() doesn't return 0 on failure (#ifdefed in cmake and fixed now in Syllable) -the kwsys and Bootstrap tests fail with timeout due to the fact that I'm doing all that in qemu, which is quite slow -RPATH is now supported, so without modifying the test adapting DLL_PATH in Syllable is required for the tests to succeed -the Plugin test fails with an undefined reference to example_exe_function() in example_mod_1, it seems this isn't supported under Syllable Alex
* STYLE: Nightly Date StampBrad King2007-11-231-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-221-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-211-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-201-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-191-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-181-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-171-1/+1
|
* ENH: Add ability to call Visual Studio macros from CMake. Add a CMake Visual ↵David Cole2007-11-161-5/+17
| | | | Studio macro to reload a solution file automatically if CMake makes changes to .sln files or .vcproj files. Add code to call the macro automatically for any running Visual Studio instances with the .sln file open at the end of the Visual Studio Generate call. Only call the macro if some .sln or .vcproj file changed during Generate. Also, add handling for REG_EXPAND_SZ type to SystemTools::ReadRegistryValue - returned string has environment variable references expanded.
* STYLE: Nightly Date StampBrad King2007-11-161-1/+1
|
* STYLE: Nightly Date StampBrad King2007-11-151-1/+1
|
* daily version numberBrad King2007-11-141-1/+1
|
* daily version numberBrad King2007-11-131-1/+1
|
* daily version numberBrad King2007-11-121-3/+3
|
* ENH: Created better names and a more convenient set of version date stamp ↵Brad King2007-11-122-29/+29
| | | | macros.
* BUG: Fixed typo in previous commit.Brad King2007-11-121-4/+4
|
* ENH: Adding DateStamp feature to KWSys. This provides a header file giving ↵Brad King2007-11-124-1/+100
| | | | preprocessor access to a dated version. The 'datestamp' will be updated automatically every day by a script.
* COMP: Fix warning when gcount stream method does not really return ↵Brad King2007-11-071-1/+2
| | | | std::streamsize.
* COMP: Add streamsize and streamoff to kwsys_ios namespace for ancient streams.Brad King2007-11-051-0/+2
|
* COMP: Fix warnings on 64-bit Mac OS X build. Patch from issue #3697.Brad King2007-11-051-4/+3
|
* STYLE: fixed misspellings of Mac OS XSean McBride2007-10-262-2/+2
|
* BUG: Fix bug#5590. When converting a relative path between two full paths ↵Brad King2007-10-251-13/+6
| | | | on different windows drive letters do not create a ../../d:/foo/bar path and just return the full path to the destination.
* 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
|