CMake/Source/kwsys
2007-05-18 09:17:36 -04:00
..
auto_ptr.hxx.in COMP: Fix warning about binding reference-to-non-const to an rvalue on VS6. It does not seem to be doing the proper auto_ptr_ref conversions. Instead use the const_cast work-around on this platform. 2007-03-09 16:58:08 -05:00
Base64.c
Base64.h.in
CheckCXXSourceRuns.cmake
CMakeEmptyInputFile.in
CMakeLists.txt COMP: Skip testAutoPtr and testHashSTL on Watcom. They are hopeless. 2007-04-19 12:11:56 -04:00
CommandLineArguments.cxx BUG: reverting previous change. 2006-12-21 10:24:33 -05:00
CommandLineArguments.hxx.in
Configure.h.in
Configure.hxx.in
Copyright.txt
CTestConfig.cmake
Directory.cxx
Directory.hxx.in
DynamicLoader.cxx ENH: Added support for Watcom compiler. Added TODO comment about calling conventions. 2007-04-19 11:31:55 -04:00
DynamicLoader.hxx.in BUG: revert yesterday patch. The implementation was correct. The problem was 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 2006-12-09 11:25:25 -05:00
EncodeExecutable.c COMP: Need to include header for unlink function. 2007-04-19 12:11:16 -04:00
ExtraTest.cmake.in
FundamentalType.h.in
Glob.cxx
Glob.hxx.in
hash_fun.hxx.in
hash_map.hxx.in
hash_set.hxx.in
hashtable.hxx.in COMP: Fixed unreferenced parameter warning for VS6 with /W4. 2007-03-09 16:27:14 -05:00
IOStream.cxx
IOStream.hxx.in
kwsys_cstddef.hxx.in
kwsys_ios_fstream.h.in
kwsys_ios_iosfwd.h.in
kwsys_ios_iostream.h.in
kwsys_ios_sstream.h.in COMP: Added istringstream::clear() method to disambiguate the call from using string::clear or istrstream::clear. 2007-04-20 09:50:46 -04:00
kwsys_stl_string.hxx.in BUG: Fix stream state on successfully reading a string. 2007-04-19 12:44:04 -04:00
kwsys_stl.hxx.in
kwsysHeaderDump.pl
kwsysPlatformTests.cmake
kwsysPlatformTestsC.c
kwsysPlatformTestsCXX.cxx COMP: Make sure gcc 2.96 sstream header is not used. 2007-04-20 11:53:35 -04:00
kwsysPrivate.h
MD5.c ENH: Added MD5 implementation to KWSys. 2007-03-14 15:12:10 -04:00
MD5.h.in ENH: Added MD5 implementation to KWSys. 2007-03-14 15:12:10 -04:00
Process.h.in
ProcessFwd9x.c
ProcessUNIX.c BUG: Do not send both SIGSTOP and SIGKILL when killing a process. The 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. 2007-05-16 13:10:45 -04:00
ProcessWin32.c ENH: Added KWSYSPE_DEBUG macro to print debugging trace information. Added TODO comment explaining why process execution can still hang when a grandchild keeps the output pipes open. 2007-04-12 10:56:20 -04:00
README.txt
Registry.cxx
Registry.hxx.in
RegularExpression.cxx
RegularExpression.hxx.in
SharedForward.h.in STYLE: Fixed documentation of how to produce forwarding executables for multi-configuration builds with CMAKE_INTDIR. 2007-01-08 15:12:00 -05:00
String.hxx.in COMP: Fixes for Watcom. 2007-04-19 12:12:19 -04:00
System.c BUG: Added carrot (^) to characters that need quoting. The solaris shell needs it. 2007-05-18 09:17:36 -04:00
System.h.in ENH: Added more special unix shell characters that require quoting. Added escaping of % as %% for shells inside mingw32-make. 2007-05-17 10:53:14 -04:00
SystemTools.cxx ENH: Added kwsys SystemTools::CreateSymlink and SystemTools::ReadSymlink. 2007-03-12 13:50:28 -04:00
SystemTools.hxx.in ENH: Added kwsys SystemTools::CreateSymlink and SystemTools::ReadSymlink. 2007-03-12 13:50:28 -04:00
Terminal.c
Terminal.h.in
testAutoPtr.cxx ENH: Enabled support for use_auto_ptr(get_auto_ptr()) syntax on HP compiler. 2007-03-07 09:26:49 -05:00
testCommandLineArguments1.cxx ENH: Cleaned up KWSys tests to use test drivers. 2007-03-03 10:47:06 -05:00
testCommandLineArguments.cxx ENH: Cleaned up KWSys tests to use test drivers. 2007-03-03 10:47:06 -05:00
testDynamicLoader.cxx BUG: Use angle-brackets to include testSystemTools.h to avoid problems with in-source builds. 2007-03-07 13:52:32 -05:00
testDynload.c
testEncode.c ENH: Added MD5 implementation to KWSys. 2007-03-14 15:12:10 -04:00
testFail.c ENH: Cleaned up KWSys tests to use test drivers. 2007-03-03 10:47:06 -05:00
testHashSTL.cxx ENH: Cleaned up KWSys tests to use test drivers. 2007-03-03 10:47:06 -05:00
testIOS.cxx BUG: Need to clear read failure when string is reset. 2007-04-19 12:56:07 -04:00
testProcess.c ENH: Changes based on patch from Ryan C. Gordon to enable process execution on BeOS. There seems to be no way to implement it without polling (or threads). 2006-12-04 14:42:47 -05:00
testRegistry.cxx ENH: Cleaned up KWSys tests to use test drivers. 2007-03-03 10:47:06 -05:00
testSystemTools.bin
testSystemTools.cxx BUG: Use angle-brackets to include testSystemTools.h to avoid problems with in-source builds. 2007-03-07 13:52:32 -05:00
testSystemTools.h.in
testTerminal.c ENH: Cleaned up KWSys tests to use test drivers. 2007-03-03 10:47:06 -05:00

KWSys provides a platform-independent API to many common system
features that are implemented differently on every platform.  This
library is intended to be shared among many projects, so it has a
configurable namespace.  Each project should configure KWSys to use a
namespace unique to itself.  See comments in CMakeLists.txt for
details.

You are probably reading this file in the source tree of a surrounding
project.  In that case, see "../README.kwsys" for details of using
KWSys in your project.