summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Added pre-build and post-build test for custom targets.Brad King2005-04-261-1/+20
|
* BUG: Looks like std::string changes the result of c_str() call. This fixes ↵Andy Cedilnik2005-04-261-0/+2
| | | | potential problems
* COMP: Remove warningAndy Cedilnik2005-04-261-1/+1
|
* COMP: Remove warningsAndy Cedilnik2005-04-262-1/+3
|
* BUG: Fixed ordering of multiple commands in a custom target when implemented ↵Brad King2005-04-262-25/+75
| | | | as custom commands. Also added support to execute pre-build rules first to be consistent with makefile generator.
* BUG: Added inclusion of pre-build rules for custom targets.Brad King2005-04-261-1/+3
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-261-1/+1
|
* COMP: Remove warningAndy Cedilnik2005-04-251-4/+4
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-251-1/+1
|
* COMP: Fix problem on compilers that cannot implicitly convert std::string to ↵Andy Cedilnik2005-04-241-1/+5
| | | | cmStdString
* ENH: Improve internal test handling by creating a test class. Command ↵Andy Cedilnik2005-04-2413-167/+278
| | | | cmEnableTesting now only sets CMAKE_TESTING_ENABLED and cmAddTest only adds a test to the list. The actual test files are written by local generator. This way we can at some point in the future replace DartTestfile with some XML file
* BUG: The argument is --ctest-configAndy Cedilnik2005-04-241-1/+1
|
* ENH: Support for modified and conflicts in subversionAndy Cedilnik2005-04-241-42/+67
|
* BUG: Older SGI compilers still have internal/stdio_core.h but do not support ↵Brad King2005-04-242-6/+8
| | | | #include_next. We'll have to try-compile to test whether this hack is needed.
* BUG: Remember if there was update errorAndy Cedilnik2005-04-241-3/+3
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-241-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-231-1/+1
|
* ENH: Created cmTarget::GetLibraryNames to replace ↵Brad King2005-04-224-75/+168
| | | | cmLocalUnixMakefileGenerator2::GetLibraryNames. Added cmTarget::GetLibraryCleanNames to be used by cmLocalUnixMakefileGenerator2. Now when a library is linked both the shared and static versions are removed from the build tree. In this way we avoid having both kinds of libraries present when the user switches BUILD_SHARED_LIBS on/off. This prevents problems with turning off shared libraries and then expecting the linker to use the static libraries only to find it is using the out-of-date shared versions.
* ENH: Added cmTarget::GetBaseName and cmTarget::GetFullName methods and ↵Brad King2005-04-227-95/+125
| | | | removed cmLocalGenerator::GetFullTargetName and cmLocalUnixMakefileGenerator2::GetBaseTargetName. This functionality is more sensibly implemented in cmTarget. It is also needed for an upcoming feature in which both the shared and static versions of a library will be removed before one is linked.
* COMP: Commented out unused variable until the corresponding logic is finished.Brad King2005-04-221-2/+2
|
* COMP: Removed line continuation characters from #if lines to avoid linefeed ↵Brad King2005-04-222-11/+4
| | | | problems on cygwin.
* BUG: Drastically extending test5's timeouts to get it to pass when running ↵Brad King2005-04-221-2/+2
| | | | on a heavily-loaded machine.
* COMP: Fixed assignment-in-conditional warning.Brad King2005-04-221-1/+2
|
* COMP: Fixed constant conditional warning.Brad King2005-04-221-1/+1
|
* COMP: Fixed unused parameter and constant conditional warnings.Brad King2005-04-221-1/+3
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-221-1/+1
|
* ENH: Reorganize a bit and make sure to report an error if there are modified ↵Andy Cedilnik2005-04-211-11/+21
| | | | files or conflicts
* COMP: Using a new work-around for stdarg.h problem on SGI.Brad King2005-04-216-40/+20
|
* 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-215-50/+211
| | | | KWSYS_STL_HAS_ALLOCATOR_OBJECTS. Needed for more old-stl support in the hashtable.
* COMP: Do not build the file when wide char is not set since the file would ↵Andy Cedilnik2005-04-211-1/+6
| | | | be empty
* STYLE: Nightly Version updateAndy Cedilnik2005-04-211-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2005-04-201-1/+1
|
* 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/+20
|
* COMP: Attempt to fix problem with building on SGIAndy Cedilnik2005-04-192-154/+193
|
* 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.
* COMP: Fix MAKE_WCS_BLOCK_NULL when HAVE_UNICODE_WCHAR is off.Brad King2005-04-191-1/+1
|
* BUG: Need to use #cmakedefine for HAVE_UNICODE_WCHAR.Brad King2005-04-191-1/+1
|
* BUG: Do not provide HAVE_UNICODE_WCHAR option if wchar.h is not available.Brad King2005-04-191-3/+7
|
* 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-157-0/+69
| | | | 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
|