summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Add SGI -LANG:std supportAndy Cedilnik2003-04-221-0/+27
|
* ENH: CleanupAndy Cedilnik2003-04-181-1/+1
|
* Even better error detection on AIXAndy Cedilnik2003-04-181-1/+1
|
* Better AIX detectionAndy Cedilnik2003-04-181-1/+2
|
* This is really an errorAndy Cedilnik2003-04-171-1/+1
|
* Support LDFLAGSAndy Cedilnik2003-04-171-1/+1
|
* ENH: Add AIX warerrAndy Cedilnik2003-04-171-0/+2
|
* warning fix hopefullyKen Martin2003-04-171-3/+3
|
* More attempt to make continuous email workAndy Cedilnik2003-04-171-2/+2
|
* fix one warningKen Martin2003-04-171-0/+3
|
* Attempt to enable sending of e-mails from continuousAndy Cedilnik2003-04-171-0/+6
|
* BUG: fix compile error on windows because of windows.hBill Hoffman2003-04-171-1/+6
|
* BUG: Rename Bootstrap directory to Bootstrap.cmk, so that on platforms such ↵Andy Cedilnik2003-04-174-15/+15
| | | | as Windows and Mac OSX it will break during in-source build
* ENH: cleanupAndy Cedilnik2003-04-161-2/+1
|
* fix one warningKen Martin2003-04-161-1/+1
|
* streamline bootstrapKen Martin2003-04-161-58/+58
|
* minor fixKen Martin2003-04-161-2/+4
|
* add COdeWarrior back in for testingKen Martin2003-04-164-121/+759
|
* Attempt to make unloading work on OSXAndy Cedilnik2003-04-161-0/+1
|
* Fix update outputAndy Cedilnik2003-04-161-1/+1
|
* ENH: add a double try compile to fix crazy make on hpBill Hoffman2003-04-162-0/+14
|
* took out an orphan endifKent Williams2003-04-111-1/+0
|
* remove redundant function and eliminate need for strcasecmpKent Williams2003-04-112-51/+12
|
* ENH: Added documentation for ITK.Brad King2003-04-111-0/+24
|
* ERR: Borland fix for stricmp. ERR: removed itk dependencies.Bill Lorensen2003-04-111-4/+8
|
* Removed platform-specific functions from Code/IO/itkIOCommon, fixed code to ↵Kent Williams2003-04-102-0/+73
| | | | use kwsys/SystemTools
* Do safe division instead of fixing resultAndy Cedilnik2003-04-101-15/+11
|
* ERR: Removed unused parameter and truncated debug symbol warnings.Brad King2003-04-101-1/+5
|
* Attempt to fix FIXNUMAndy Cedilnik2003-04-091-1/+6
|
* ERR: Fixed typo. cmRegularExpression -> RegularExpression.Brad King2003-04-081-1/+1
|
* ENH: Added kwsys library for platform-independent system tools.Brad King2003-04-089-0/+3956
|
* Remove nan and inf, use iostreams to set precision, fix file name, and ↵Andy Cedilnik2003-04-082-13/+31
| | | | remove bogus files
* Remove push_back on string. Why can't STL be standard?Andy Cedilnik2003-04-081-1/+1
|
* Some cov improvements and better escAndy Cedilnik2003-04-072-9/+33
|
* We should really just call make and not make allAndy Cedilnik2003-04-071-1/+0
|
* ENH: Added CACHE entry types to documentation string.Brad King2003-04-041-6/+12
|
* ENH: Added /usr/local/lib/fltkBrad King2003-04-041-0/+1
|
* Better support for spaces in pathsAndy Cedilnik2003-04-031-1/+1
|
* Try differentiating extensionsAndy Cedilnik2003-04-031-1/+3
|
* ENH: Improved documentation. Also modified behavior of "cmake" to not ↵Brad King2003-04-034-25/+59
| | | | configure a project in the current directory unless . is given.
* ENH: Running with zero arguments now produces usage.Brad King2003-04-031-1/+8
|
* Url escape passwordAndy Cedilnik2003-04-022-3/+31
|
* On verbose, be more verboseAndy Cedilnik2003-04-021-2/+5
|
* If display is not set, do not attempt to run applicationAndy Cedilnik2003-04-021-5/+21
|
* Add QT on debianAndy Cedilnik2003-04-021-1/+2
|
* Fix cov. problems, ignore nonascii char. Propagate verbosityAndy Cedilnik2003-04-011-42/+73
|
* Controle verbosityAndy Cedilnik2003-04-012-9/+35
|
* BUG: strlen(buffer) from getline may be 2 less than gcount on windows ↵Brad King2003-04-011-1/+1
| | | | because both the CR and LF characters may be removed.
* Stop using check_function_exists. Use check_symbol_existsAndy Cedilnik2003-03-281-36/+41
|
* New design of CheckSymbolExists pretty much replaces all other ones.Andy Cedilnik2003-03-281-4/+15
| | | | | | | | | | | | | | | For example: CHECK_HEADER_EXISTS("type.h" HAVE_TYPE_H) is: CHECK_SYMBOL_EXISTS(main "type.h" HAVE_TYPE_H) CHECK_LIBRARY_EXISTS("nsl" gethostname HAVE_LIBNSL) would be SET(CMAKE_REQUIRED_LIBRARIES "nsl") CHECK_SYMBOL_EXISTS(gethostname "netdb.h" HAVE_LIBNSL) ...