summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* NetBSD downstream patches.Christos Zoulas2014-11-11
| | | | | | | | | | | | | | | | const fixes. -Wconversion fixes for the skeleton files. param namespace protection (add _ to inline function parameters). unused variable/code removal. rename warn to lwarn to avoid conflict with <err.h>. ctype.h function argument correction. merged the error functions lerrif and lerrsf -> lerr.
* Allow error reporting routines to accept varying number of arguments in ↵Mariusz Pluciński2014-07-25
| | | | modern style
* Fix warning on assigning from `const char*` to `char*`Mariusz Pluciński2014-07-25
|
* Add disambiguation braces in main.cMariusz Pluciński2014-07-25
|
* Removed deprecated 'register' storage class specifier.Yuri2014-07-25
| | | | clang-3.5.0 now complains about them: warning: 'register' storage class specifier is deprecated [-Wdeprecated-register]
* Change output formats from octal to hexadecimalMariusz Pluciński2014-06-26
|
* check limits before using array index cclp; resolves sf-166Will Estes2014-05-03
|
* Suppress clang warning about empty @param paragraph; resolves sf#158Sean McBride2014-04-02
| | | | Signed-off-by: Will Estes <westes575@gmail.com>
* Adjust buffer sizes on ia64.Cyril Brulebois2014-03-05
| | | | | | | | | | | | | | From the debian change entry: > Finish fixing the ia64 buffer issue. Previous commits increased YY_READ_BUF_SIZE (where __ia64__ is defined) but left YY_BUF_SIZE unchanged, so that didn't fix the problem in the end. In the general case, the latter is twice the former. Therefore set it to the same ratio in the ia64 case. In general, this sort of architecture specific fix is not the path we want to take, but the cleanup should be done in a more organized way in the future and getting it working would be preferrable now.
* move m4 make variable to src/Makefile.am.Will Estes2014-02-18
| | | | | | This prevents an error when building skel.c caused by the $(m4) make variable not being defined. Particularly nasty since skel.c would still be created, thus causing make to think skel.c was up to date.
* move flex program sources into src/ directoryWill Estes2014-02-16
The *.[chly] sources are now in the src directory. This implies a bunch of changes in Makefile.am and friends to account for the new location. The .gitignore files are now more local to places where various object files and generated source files occur.