Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ccmake: Add missing initializers reported by cppcheck | Ömer Fadıl USTA | 2013-07-15 | 1 | -1/+1 |
| | | | | | | | | | | The return statement uses d1, d2, d3, and d4 variables but the code which initialize them inside a if statement and not always this if statement is corrent. On the other hand these variables are using for return statement and needed to be initialized. A trivial fix to pervent some compilers will give build error. Reviewed-by: Igor Murzov <e-mail@date.by> | ||||
* | Remove some uses of obsolete 'register' storage specifier | Sean McBride | 2013-06-28 | 1 | -1/+1 |
| | | | | Remove the keyword from all Source/* files outside of KWSys. | ||||
* | Fix spelling and typos (non-binary) | Andreas Mohr | 2013-05-07 | 2 | -4/+4 |
| | |||||
* | Remove CMake-language block-end command arguments | Kitware Robot | 2012-08-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -11/+11 |
| | | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | ccmake: Remove extra parens around comparison | Brad King | 2011-02-15 | 1 | -1/+1 |
| | | | | | | | | | | The Clang compiler warns about extra parenthesis in the code if ((form->curpage == field->page)) ~ ^ ~ because the idiom is commonly used when an assignment is intended instead of a comparison. Remove the extra enclosing layer. | ||||
* | ccmake: Use LSB 4.0 getmaxyx conditionally | Brad King | 2011-01-05 | 2 | -2/+16 |
| | | | | | Use of 'getmaxyx' works on LSB but does not seem portable to other curses versions. | ||||
* | ccmake: Use LSB 4.0 curses API conditionally | Brad King | 2011-01-04 | 1 | -5/+8 |
| | | | | | Use of 'attr_t' and 'wattr_get' works on LSB but does not seem portable to other curses versions. | ||||
* | ccmake: Port for LSB 4.0 (#11648) | Craig Scott | 2011-01-03 | 2 | -6/+14 |
| | | | | Use getmaxyx instead of getmax[xy]. Avoid using getattrs. | ||||
* | Fix spelling errors reported by Lintian. | Kai Wasserbäch | 2010-07-13 | 3 | -5/+5 |
| | | | | | During a Lintian run on the binary packages of CMake in Debian I was notified of many spelling mistakes. | ||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 2 | -14/+20 |
| | | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range. | ||||
* | COMP: make it build on NetBSD, which has separate curses and ncurses, so | Alexander Neundorf | 2007-08-27 | 3 | -2/+42 |
| | | | | | | | it has to be detected that curses isn't good enough, but ncurses is, and that ncurses.h instead of curses.h is included Alex | ||||
* | ENH: fix ia64 build with aCC | Bill Hoffman | 2006-06-27 | 1 | -13/+19 |
| | |||||
* | ENH: add curses include directory | Bill Hoffman | 2005-07-11 | 1 | -0/+1 |
| | |||||
* | ENH: Removing stdio_core hack. A better work-around has been put in ↵ | Brad King | 2005-04-26 | 2 | -11/+0 |
| | | | | cmStandardIncludes.h. | ||||
* | BUG: Older SGI compilers still have internal/stdio_core.h but do not support ↵ | Brad King | 2005-04-24 | 1 | -3/+4 |
| | | | | #include_next. We'll have to try-compile to test whether this hack is needed. | ||||
* | COMP: Using a new work-around for stdarg.h problem on SGI. | Brad King | 2005-04-21 | 3 | -20/+10 |
| | |||||
* | COMP: Attempt to fix problem with building on SGI | Andy Cedilnik | 2005-04-19 | 1 | -154/+174 |
| | |||||
* | BUG: fixes for hp | Bill Hoffman | 2003-03-11 | 1 | -3/+8 |
| | |||||
* | ERR: Another attempt to remove warnings from missing prototypes. | Brad King | 2002-10-23 | 1 | -1/+1 |
| | |||||
* | ENH: Another attempt to fix OSF warnings. Also removed TABS. | Brad King | 2002-10-16 | 1 | -731/+730 |
| | |||||
* | BUG: add explicit clean up of the cachemanager at exit of programs, so dll ↵ | Bill Hoffman | 2002-08-23 | 1 | -1/+5 |
| | | | | destruction is not a problem. | ||||
* | ERR: Removed most of the repeated curses declarations. The cause errors on ↵ | Brad King | 2002-06-21 | 1 | -0/+3 |
| | | | | other platforms. Grrrr.. | ||||
* | ERR: Added function declarations from curses.h. They are not present on ↵ | Brad King | 2002-06-21 | 1 | -0/+15 |
| | | | | some platforms. Fixes warnings about implicit declarations. | ||||
* | ERR: Fixed unused parameter warning. | Brad King | 2002-06-19 | 1 | -0/+1 |
| | |||||
* | ERR: Fixed compiler warnings when using strict ansi. | Brad King | 2002-06-18 | 7 | -4/+17 |
| | |||||
* | ERR: Attempt to fix warning on OSF about implicit declaration of winnstr. | Brad King | 2002-06-18 | 1 | -0/+2 |
| | |||||
* | BUG: Changed from SOURCE_FILES to SET | Amitha Perera | 2002-04-22 | 1 | -3/+3 |
| | |||||
* | This dir should not be covered (form distrib) | Sebastien Barre | 2002-02-13 | 1 | -0/+1 |
| | |||||
* | ERR: Corrected assertions of pointers to remove warnings. | Brad King | 2002-01-25 | 4 | -16/+16 |
| | |||||
* | no c++ comments in c code, duhhhh | Bill Hoffman | 2001-12-04 | 1 | -1/+1 |
| | |||||
* | ENH: AIX seems to define lines and columns as macros, I undefed them | Bill Hoffman | 2001-12-04 | 1 | -0/+4 |
| | |||||
* | ERR: Fixed compiler warning for gcc 3.0. | Brad King | 2001-11-14 | 1 | -1/+2 |
| | |||||
* | warnings | Bill Hoffman | 2001-11-13 | 1 | -4/+0 |
| | |||||
* | Trying to fix curses. | Berk Geveci | 2001-11-09 | 2 | -11/+22 |
| | |||||
* | Trying to fix curses problems. | Berk Geveci | 2001-11-08 | 2 | -2/+6 |
| | |||||
* | Fixing problems with curses headers. | Berk Geveci | 2001-11-08 | 2 | -0/+2 |
| | |||||
* | Trying to fix curses problems. | Berk Geveci | 2001-11-08 | 2 | -6/+4 |
| | |||||
* | Oops. | Berk Geveci | 2001-11-08 | 1 | -7/+0 |
| | |||||
* | Changes to remove warnings and fix dependencies. | Berk Geveci | 2001-11-08 | 3 | -1/+14 |
| | |||||
* | Removed a function which used va_start (did not compile on Sun with gcc) | Bill Hoffman | 2001-11-06 | 2 | -45/+0 |
| | |||||
* | HPUX support. | Berk Geveci | 2001-11-05 | 2 | -0/+6 |
| | |||||
* | Adding form library. | Berk Geveci | 2001-11-05 | 47 | -0/+10081 |