Andy Cedilnik 5f2343bf91 ENH: Test for both commands 20 years ago
..
Base64.c b9d472d81d ENH: Moved kwsys_ns and kwsysEXPORT macros to Configure.h in the case of building a kwsys source file. This allows more than one header to be included in a kwsys source file without redefining the macros. 20 years ago
Base64.h.in b9d472d81d ENH: Moved kwsys_ns and kwsysEXPORT macros to Configure.h in the case of building a kwsys source file. This allows more than one header to be included in a kwsys source file without redefining the macros. 20 years ago
CMakeLists.txt 5f2343bf91 ENH: Test for both commands 20 years ago
CTestConfig.cmake 1b578d3180 ENH: Several improvements with the way things are handled. Also, support multiple submited files 20 years ago
CommandLineArguments.cxx bac564356b COMP: Added pragma directives for SGI compilers to avoid useless warnings. 20 years ago
CommandLineArguments.hxx.in d3239ac68f ENH: Fix Bug #1950, provide a direct access to the input. Minor cleanup (convenience) 20 years ago
Configure.h.in b9d472d81d ENH: Moved kwsys_ns and kwsysEXPORT macros to Configure.h in the case of building a kwsys source file. This allows more than one header to be included in a kwsys source file without redefining the macros. 20 years ago
Configure.hxx.in 943108cadf ENH: C++ configuration should include C configuration. 20 years ago
Copyright.txt ce8a34907a ENH: Updated copyright. 22 years ago
Directory.cxx caf54b2093 COMP: Adding work-around for CMake dependency scanning limitation. Any configured header included by KWSYS_HEADER() in a .c or .cxx file in kwsys itself must use this hack to get dependencies. 20 years ago
Directory.hxx.in ce8a34907a ENH: Updated copyright. 22 years ago
EncodeExecutable.c ce8a34907a ENH: Updated copyright. 22 years ago
ExtraTest.cmake.in 6af66e8b20 ENH: Add capability to include files to DartTestfile.txt and add example of that 20 years ago
FundamentalType.h.in 82a8e9be99 ENH: Added FundamentalType header defining platform-independent fixed size/signedness integer types. 20 years ago
Process.h.in b9d472d81d ENH: Moved kwsys_ns and kwsysEXPORT macros to Configure.h in the case of building a kwsys source file. This allows more than one header to be included in a kwsys source file without redefining the macros. 20 years ago
ProcessFwd9x.c cb90652dca ENH: Added comment for future work to make forwarding executable always statically linked. 21 years ago
ProcessUNIX.c 9fd4560ba2 BUG: Fixed polling capability of WaitForData. 20 years ago
ProcessWin32.c 7e7249cbd1 BUG: Fixed reusability of process object by clearing each pipe's Closed flag when cleaning up. 20 years ago
README.txt e2d7c3a4e4 STYLE: Added reference to documentation in CMakeLists.txt. 20 years ago
Registry.cxx 8ee8cd372f BUG: On WIN32, since we are using subkey, set it 20 years ago
Registry.hxx.in 9b486bacfc ENH: Modify API a little bit to allow arbitrary length values. Encode certain characters. Rename UNIX registry to FILE registry. More testing 20 years ago
RegularExpression.cxx c7a61b9802 COMP: Fixed conversion warnings. 20 years ago
RegularExpression.hxx.in 7ebba61010 COMP: Changed type of regmlen to avoid warnings when other lengths are converted to it. 20 years ago
SharedForward.h.in 2e004e03ca ENH: Added cygcheck knowledge for --ldd option on Cygwin. Added error message for --ldd option when no tool is available but the option was still requested. 20 years ago
SystemTools.cxx 93efb1cf5b BUG: Automatic pwd/cwd path translation must check that the generated logical-to-physical mapping is correct by using realpath. 20 years ago
SystemTools.hxx.in 6e4b6ca0d3 ENH: add method to attempt to check if a file is text or binary 20 years ago
hash_fun.hxx.in bddade9696 COMP: Added KWSYS_CXX_HAS_CSTDDEF try-compile to KWSys to provide kwsys/cstddef header (to get size_t for hash_fun.hxx). 20 years ago
hash_map.hxx.in cc996274f8 COMP: Replaced kwsys_stl with @KWSYS_NAMESPACE@_stl to properly use the configured namespace. 20 years ago
hash_set.hxx.in cc996274f8 COMP: Replaced kwsys_stl with @KWSYS_NAMESPACE@_stl to properly use the configured namespace. 20 years ago
hashtable.hxx.in 553f7a04d0 ENH: Added some smaller primes to allow small hash table sizes and therefore shorter initial construction times. 20 years ago
kwsysHeaderDump.pl 5017fc66e5 ENH: Renaming kwsys macro to kwsys_ns to work around borland preprocessor bug. 21 years ago
kwsysPlatformCxxTests.cmake db28904467 ENH: change loc of log files 20 years ago
kwsysPlatformCxxTests.cxx a5483acc0e ENH: Added TEST_KWSYS_CXX_SAME_LONG_AND___INT64, TEST_KWSYS_CXX_SAME_LONG_LONG_AND___INT64, TEST_KWSYS_CAN_CONVERT_UI64_TO_DOUBLE, and TEST_KWSYS_CHAR_IS_SIGNED. 20 years ago
kwsysPrivate.h ce8a34907a ENH: Updated copyright. 22 years ago
kwsys_cstddef.hxx.in bddade9696 COMP: Added KWSYS_CXX_HAS_CSTDDEF try-compile to KWSys to provide kwsys/cstddef header (to get size_t for hash_fun.hxx). 20 years ago
kwsys_ios_fstream.h.in ca2f4aa039 COMP: Disabling old streams warnings when including old headers on MSVC. 21 years ago
kwsys_ios_iosfwd.h.in a0f48a0592 ERR: Removed inclusion of fstream header. This file is meant as a compatibility header for iosfwd and therefore should not include any other header. Whatever was fixed by adding the include of fstream here should be fixed by other means. 21 years ago
kwsys_ios_iostream.h.in ca2f4aa039 COMP: Disabling old streams warnings when including old headers on MSVC. 21 years ago
kwsys_ios_sstream.h.in 65ef62c697 COMP: Fix no-assignment-operator warning and disable typedef-name synonym warning. 20 years ago
kwsys_stl.hxx.in 1713c3fd19 ENH: Added __HPACC_USING_MULTIPLIES_IN_FUNCTIONAL fix from vtkstd. 20 years ago
kwsys_stl_string.hxx.in 49cb763452 COMP: Removed line continuation characters from #if lines to avoid linefeed problems on cygwin. 20 years ago
testCommandLineArguments.cxx caf54b2093 COMP: Adding work-around for CMake dependency scanning limitation. Any configured header included by KWSYS_HEADER() in a .c or .cxx file in kwsys itself must use this hack to get dependencies. 20 years ago
testFail.c 0b30d23085 ENH: Initial import 20 years ago
testHashSTL.cxx 712e64ebb3 ENH: Rename test 20 years ago
testIOS.cxx caf54b2093 COMP: Adding work-around for CMake dependency scanning limitation. Any configured header included by KWSYS_HEADER() in a .c or .cxx file in kwsys itself must use this hack to get dependencies. 20 years ago
testProcess.c 931233ee7b COMP: Fixed uninitialized variable. 20 years ago
testRegistry.cxx 767057f37f BUG: Fix encoding and add deleting to the test 20 years ago
testSystemTools.cxx 490119d2aa ENH: fix test, it has to return a true/false value otherwise it just passes the test, and add test for EscapeChars 20 years ago

README.txt

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.