summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Improve bootstrapping on Unix, so that it bootstraps in the subdirectory. ↵Andy Cedilnik2002-09-132-93/+145
| | | | This prevents from compiler files being reused and you can do make clean...
* Make QT variables advancedIan Scott2002-09-131-0/+9
|
* compiler warningKen Martin2002-09-132-3/+3
|
* duhKen Martin2002-09-131-1/+0
|
* Need to use $ENV{} to access environment variablesIan Scott2002-09-131-15/+14
|
* some cleanupKen Martin2002-09-121-1/+3
|
* uninitialized varKen Martin2002-09-121-0/+1
|
* Remove unnecessary includeAndy Cedilnik2002-09-121-1/+0
|
* Remove unnecessary includeAndy Cedilnik2002-09-121-1/+0
|
* added include of FindQT.cmakeFranck Bettinger2002-09-122-7/+16
|
* new archKen Martin2002-09-1217-7093/+0
|
* added test for QTWrapUI called qtwrappingFranck Bettinger2002-09-121-0/+6
|
* corrected test for QTWrapUIFranck Bettinger2002-09-122-7/+6
|
* new try compile moduleKen Martin2002-09-122-0/+26
|
* Oops, too fast commit; add missing ;Andy Cedilnik2002-09-121-1/+1
|
* Add more error checkingAndy Cedilnik2002-09-121-1/+9
|
* another signature for Try_CompileKen Martin2002-09-122-7/+66
|
* added a flag if a cmake is in try compileKen Martin2002-09-123-0/+9
|
* Fix mark as advanced. Now it should work properlyAndy Cedilnik2002-09-121-1/+5
|
* Simplify code. Since we access cache entry through the iterator, we do not ↵Andy Cedilnik2002-09-122-6/+4
| | | | need the cache manager any more
* Fix build problem on SunAndy Cedilnik2002-09-121-1/+2
|
* corrected the generated lists .h in header list and .cxx in sources listFranck Bettinger2002-09-111-2/+9
|
* added generation of the GENERATED_QT_FILES list for make cleanFranck Bettinger2002-09-111-0/+8
|
* added test for QTWrapUIFranck Bettinger2002-09-111-1/+12
|
* test for QTWarpUIFranck Bettinger2002-09-112-0/+59
|
* BUG: GetCacheValue must check if value is UNINITIALIZED. If so, pretend it ↵Brad King2002-09-111-1/+1
| | | | doesn't exist.
* Fix bug in ccmake which made it crash when all cache values were deletedAndy Cedilnik2002-09-111-2/+5
|
* Fix problem with ccmake crashing on empty cachesAndy Cedilnik2002-09-111-23/+26
|
* Fix MFC GUIAndy Cedilnik2002-09-111-46/+45
|
* Fix find and remove check for uninitialized entriesAndy Cedilnik2002-09-111-1/+4
|
* Function strcasecmp is not portableAndy Cedilnik2002-09-111-4/+4
|
* Couple of changes: cache variables now have a map of properties. ADVANCED ↵Andy Cedilnik2002-09-1112-153/+334
| | | | and HELPSTRING are now properties of cache variable, IsAdvanced is gone, so is GetCacheEntry, since cache entries are now all private. To access them, you use the iterator. -ADVANCED cache entries are gone and are replaced by the property of cache variables. The cache file still looks the same, but the -ADVANCED cache entries are created when writing file. MarkAsAdvanced and VariableRequires are fixed. So are curses gui and wizard
* Remove Mark_AS_ADVANCED for some variables that do not existAndy Cedilnik2002-09-111-4/+1
|
* minor fix in try compile codeKen Martin2002-09-111-7/+2
|
* ENH: Pointer-to-function to pointer-to-data casts are not even allowed in ↵Brad King2002-09-114-143/+58
| | | | strict C. Re-implemented this conversion in pure C++ using a casting trick with an extra level of indirection.
* ERR: Removed C++-style comments, used C-style instead.Brad King2002-09-111-20/+23
|
* ERR: Added missing include of stdio.h for sprintf.Brad King2002-09-101-0/+2
|
* updated signatureKen Martin2002-09-102-13/+20
|
* updated makefile moved commands into cmake and fixed try compileKen Martin2002-09-102-85/+29
|
* moved dump docs into cmakeKen Martin2002-09-101-3/+3
|
* moved commands into cmakeKen Martin2002-09-102-0/+90
|
* modified TryCompileKen Martin2002-09-106-15/+45
|
* ERR: Cast from pointer-to-data to pointer-to-function is not allowed in C++. ↵Brad King2002-09-104-43/+142
| | | | The cast needed by cmDynamicLoader::GetSymbolAddress is now hidden in a C file.
* ERR: Fixes for comeau compiler. NULL is a pointer of type void*, and cannot ↵Brad King2002-09-101-2/+19
| | | | be compared directly with other pointer types. We use 0 instead. Also changed putenv to setenv for comeau on linux.
* ENH: Added definition of _BSD_SOURCE to enable proper use of POSIX functions ↵Brad King2002-09-101-0/+4
| | | | on comeau in linux.
* ERR: Fixes for comeau compiler. NULL is a pointer of type void*, and cannot ↵Brad King2002-09-102-2/+2
| | | | be compared directly with other pointer types. We use 0 instead.
* ERR: Fix for borland on linux. We cannot directly compare the st_dev and ↵Brad King2002-09-101-3/+3
| | | | st_ino members of struct stat. Use memcmp instead.
* ERR: Removed stray semi-colon.Brad King2002-09-101-1/+1
|
* ERR: Fixes for comeau compiler. NULL is a pointer of type void*, and cannot ↵Brad King2002-09-104-54/+54
| | | | be compared directly with other pointer types. We use 0 instead.
* ERR: Fix for borland on linux.Brad King2002-09-101-1/+1
|