summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Fixed hash_allocator_n size computation.Brad King2005-04-211-14/+38
|
* ENH: Added include-work-around for hashtable.hxx.in dependency.Brad King2005-04-211-0/+1
|
* BUG: Do not close stdout/stderr pipes in parent if they are shared.Brad King2005-04-212-4/+13
|
* COMP: Do not do va_list hack if there is no std:: namespace.Brad King2005-04-211-1/+1
|
* COMP: Added KWSys try-compiles KWSYS_STL_HAS_ALLOCATOR_TEMPLATE and ↵Brad King2005-04-214-45/+184
| | | | KWSYS_STL_HAS_ALLOCATOR_OBJECTS. Needed for more old-stl support in the hashtable.
* BUG: Adjusting timeouts for tests 4 and 5 to avoid early killing.Brad King2005-04-201-2/+2
|
* COMP: Attempt to fix problem with building on SGIAndy Cedilnik2005-04-191-0/+19
|
* BUG: When killing a child all the pipe read ends should be closed. This ↵Brad King2005-04-191-2/+7
| | | | will allow a child that is blocking while waiting to write to the pipe to wake up and receive the kill signal properly on cygwin.
* BUG: Expanded difference in timeouts between tests 4 and 5 so that 5 does ↵Brad King2005-04-191-7/+11
| | | | not timeout while waiting for 4 to timeout. This should fix the intermittent failure of test 5 on cygwin. ENH: When a mismatch is reported it now reports what it was as well as what it should have been.
* BUG: For some reason the non-template allocator test compiles on VS6 even ↵Brad King2005-04-151-1/+1
| | | | though its allocator is a template. Adding ::size_type to be sure it accesses a member of the allocator.
* BUG: Fix iterator traits test to use a real iterator instead of int*.Brad King2005-04-151-3/+6
|
* BUG: Cannot use Win32 implementation for cygwin processes because then ↵Brad King2005-04-151-5/+5
| | | | cygwin paths to executables like /usr/bin/ls are not found.
* COMP: Added KWSYS_CXX_HAS_CSTDDEF try-compile to KWSys to provide ↵Brad King2005-04-156-0/+58
| | | | kwsys/cstddef header (to get size_t for hash_fun.hxx).
* COMP: Replaced kwsys_stl with @KWSYS_NAMESPACE@_stl to properly use the ↵Brad King2005-04-153-58/+58
| | | | configured namespace.
* ENH: move convenience method to get OS name and version from KWApp to KWSys.Sebastien Barre2005-04-152-0/+271
|
* BUG: Added missing variable initialization that was accidentally removed on ↵Brad King2005-04-151-1/+1
| | | | the previsous commit.
* ENH: Changing kwsysProcess implementation on Cygwin to use the Win32 ↵Brad King2005-04-151-5/+5
| | | | implementation instead of the UNIX implementation. This makes dealing with misbehaving children work better. The KWSys Win32 process implementaion is more robust than the Cygwin implementation (partly because it doesn't have to exactly reproduce the POSIX api).
* ENH: Added KWSys try-compiles KWSYS_STL_HAS_ITERATOR_TRAITS, ↵Brad King2005-04-156-19/+113
| | | | KWSYS_STL_HAS_ITERATOR_CATEGORY, KWSYS_STL_HAS___ITERATOR_CATEGORY, and KWSYS_STL_HAS_ALLOCATOR_NONTEMPLATE to get the hash table to compile on old HP and Sun compilers.
* COMP: Replacing _Select1st with a specialized hash_select1st that avoids ↵Brad King2005-04-151-5/+6
| | | | requiring the stl pair to have first_type defined. The old HP STL does not define first_type and second_type in its pair.
* ENH: Added KWSYS_CXX_HAS_ARGUMENT_DEPENDENT_LOOKUP try-compile to KWSys. ↵Brad King2005-04-154-0/+28
| | | | Needed to optionally bring hash table comparison operators into the global namespace when argument dependent lookup is not supported.
* COMP: Removed extra variable initializations to avoid Borland warnings.Brad King2005-04-151-3/+2
|
* COMP: Remove friend templates and always use template friends (possibly with ↵Brad King2005-04-143-31/+0
| | | | <>). Needed to work-around Sun CC bug.
* COMP: Disable MSVC debug symbol truncation warning.Brad King2005-04-141-0/+5
|
* STYLE: Renaming kwsys-hash test to kwsys-testhash for consistency with other ↵Brad King2005-04-131-1/+1
| | | | tests.
* COMP: Removing return value from test6. It is an infinite loop, so the ↵Brad King2005-04-131-3/+2
| | | | return causes warnings. It will never return anyway.
* ENH: Removing old test1.c Process execution example. It is fully replaced ↵Brad King2005-04-132-53/+0
| | | | by testProcess.
* COMP: Adding work-around for CMake dependency scanning limitation. Any ↵Brad King2005-04-1313-1/+111
| | | | configured header included by KWSYS_HEADER() in a .c or .cxx file in kwsys itself must use this hack to get dependencies.
* BUG: Only do ~ test if HOME variable is defined.Brad King2005-04-131-2/+4
|
* BUG: Avoid error diagnostic popups on windows for test that crashes on purpose.Brad King2005-04-131-0/+4
|
* COMP: Added KWSYS_STL_HAS_ALLOCATOR_MAX_SIZE_ARGUMENT check for non-standard ↵Brad King2005-04-134-0/+26
| | | | argument to stl allocator<>::max_size method. Needed for kwsys hashtable to compile on Sun CC.
* BUG: allocator<>::rebind<> test should use kwsys_stl::allocator, not ↵Brad King2005-04-131-1/+1
| | | | std::allocator.
* COMP: Fix for Sun CC stl allocator signature of allocate method.Brad King2005-04-131-1/+5
|
* BUG: When constructing the bucket vector type the allocator given must have ↵Brad King2005-04-131-1/+2
| | | | been rebound to _Node* already because GCC 3.4's vector type does not rebind it.
* BUG: Fix GetFilenameName to not use uninitialized search position in win32 ↵Brad King2005-04-131-1/+1
| | | | version.
* BUG: Fixed member template test to not produce a test program that crashes ↵Brad King2005-04-131-4/+5
| | | | when it runs.
* ENH: Speedup improvementsAndy Cedilnik2005-04-131-28/+44
|
* ENH: Do kwsys testing as part of cmake testing, command line arguments are ↵Andy Cedilnik2005-04-1311-47/+117
| | | | not experimental and add simple test for systemtools
* BUG: fix insert for 64 bitBill Hoffman2005-04-131-2/+2
|
* ENH: Adding SGI hash_map and hash_set implementation ported from STL to ↵Brad King2005-04-138-17/+2311
| | | | KWSys. This also adds try-compiles for KWSYS_STL_HAS_ALLOCATOR_REBIND, KWSYS_CXX_HAS_FULL_SPECIALIZATION, KWSYS_CXX_HAS_MEMBER_TEMPLATES, and KWSYS_CXX_HAS_NULL_TEMPLATE_ARGS.
* ENH: Added __HPACC_USING_MULTIPLIES_IN_FUNCTIONAL fix from vtkstd.Brad King2005-04-131-0/+19
|
* COMP: Fixed ambiguous call to insert method of string.Brad King2005-04-121-1/+2
|
* ENH: optimization of cwd and do not leak library handleBill Hoffman2005-04-122-10/+18
|
* BUG: fix GetLongPathName for WindowsNTBill Hoffman2005-04-111-10/+84
|
* BUG: fix build on mingwBill Hoffman2005-04-081-0/+5
|
* BUG: if short path or long path fails return the original inputBill Hoffman2005-04-071-2/+2
|
* ENH: check return value of GetLongPathBill Hoffman2005-04-071-1/+5
|
* BUG: fix for bug 1717 incorrect path sent to dart serverBill Hoffman2005-04-072-0/+28
|
* ENH: Added proper namespaced version of KWSYS_STL_STRING_ISTREAM_DEFINED, ↵Brad King2005-04-061-3/+12
| | | | KWSYS_STL_STRING_OSTREAM_DEFINED, and _STL_STRING_NEQ_CHAR_DEFINED macros.
* remove cerr stuffBill Hoffman2005-04-061-6/+0
|
* Fix bug in != stuffBill Hoffman2005-04-061-2/+7
|