summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - fix: handle glob(3) error returns (bz#1051685).HEADoriginmasterjbj2017-06-142-2/+7
|
* - fix: SYSCONFDIR as prefix, not literal, when globbing (bz#1051685).jbj2017-06-142-2/+3
|
* - i18n: update PO files (Translation Project).jbj2017-03-1961-985/+1190
|
* - sanity.jbj2016-12-231-0/+13
|
* - fix: free con->os->nextArg when used (memory leaks).jbj2016-06-274-17/+21
| | | | | | - enable SUPPORT_GLOBAL_CALCULATOR. - revert to SUPPORT_CONTIGUOUS_ARGV: alias/exec have memroy leaks. - add poptGlob_pattern_p() always (portability).
* - use poptArgvFree to avoid memory leaks.jbj2016-06-245-9/+11
|
* - brain fart.jbj2016-06-171-4/+3
|
* - vs: stub in dll *.def generation.jbj2016-06-171-5/+5
| | | | | - cygwin: add portability fixes. - gnulib: add glob/fts modules.
* - fix whitespace in c-format field.jbj2016-04-251-1/+1
|
* - clean up --coverage spewage.jbj2016-04-201-0/+1
|
* - uniqify/alphabetize compler option tests.jbj2016-04-201-50/+55
|
* - coverity: add covscan target.jbj2016-03-291-5/+14
|
* - sanity.jbj2016-03-281-1/+2
|
* - jbj: i18n: update PO files (Translation Project).jbj2016-03-185-22/+24
|
* - sanity.jbj2016-03-1859-993/+993
|
* - cppcheck: annotate/fix warnings.jbj2015-05-138-35/+63
| | | | - resurrect make distcheck.
* - update.jbj2015-05-1359-1975/+2720
|
* - create new locales using bing.jbj2015-05-1258-2043/+4206
|
* - cscope: recuscitate recursively.jbj2015-05-102-0/+2
|
* - add recursive cscopelist rule.jbj2015-05-101-0/+1
|
* - syntastic: capture cfalgs to use syntastic.jbj2015-05-012-2/+6
|
* - i18n: update PO files (Translation Project).jbj2015-04-1939-1294/+2054
|
* - i18n: update PO files (Translation Project).jbj2015-04-1940-2150/+1392
|
* - i18n: update da fr nb nl uk, and msgmerge (Translation Project).jbj2015-03-296-86/+92
|
* - popt: include external symbols within extern "C" scope.jbj2014-11-111-5/+6
|
* - sanity.rpm-5_4_15-releasejbj2014-08-1340-41/+41
|
* - i18n: add gu hr ia kn pt_BR ta, msgmerge (Translation Project).jbj2014-08-0941-135/+1096
|
* - use latest gettext.jbj2014-07-201-1/+1
|
* configure.ac: add -Wdeclaration-after-statement if built with ↵devzero20002014-04-151-0/+1
| | | | --enable-gcc-warnings
* This patch series changes everywhere the back-quotes construct for commanddevzero20002014-03-282-9/+9
| | | | | | | | | | | | | substitution with the $( ... ). The backquoted form is the historical method for command substitution, and is supported by POSIX. However, all but the simplest uses become complicated quickly. In particular, embedded command substitutions and/or the use of double quotes require careful escaping with the backslash character. Because of this the POSIX shell adopted the $(…) feature from the Korn shell. Because this construct uses distinct opening and closing delimiters, it is much easier to follow. Also now the embedded double quotes no longer need escaping.
* add cpp suppressions directive for dealing withdevzero20002014-01-0839-545/+554
| | | | | false positive. Enable cppcheck inline suppression for the make cppcheck target
* popthelp.c reduce variables scope (cppcheck warning)devzero20002014-01-082-2/+3
|
* poptint.c reduce variables scope (cppcheck warning)devzero20002014-01-082-1/+3
|
* poptconfig.c reduce variables scope (cppcheck warning)devzero20002014-01-082-1/+2
|
* poptconfig.c: add some curly bracesdevzero20002013-12-191-0/+2
| | | | In c89 declarations were only valid at the beginning of blocks.
* cpptarget: missing local includedirdevzero20002013-12-191-1/+1
|
* poptconfig: drop cppcheck false positivedevzero20002013-12-191-1/+1
|
* add cppcheck conditional makefile targetdevzero20002013-12-193-0/+11
|
* - spell corrections.jbj2013-11-241-2/+2
|
* fix coverity CID 1057440: Unused pointer value (UNUSED_VALUE)rpm-5_4_13-releasedevzero20002013-08-161-1/+1
|
* drop expr syntax error in make check under dashdevzero20002013-07-302-2/+3
| | | | Submitted by: Elia Pinto
* - default to "make V=0" silent builds to get rid of endless spewage.rpm-5_4_11-releasejbj2013-07-081-0/+1
| | | | - ignore cruft.
* Print to the end of the configure phase the options we havedevzero20002013-07-043-11/+42
| | | | | | enabled and their results on the basis of the target system. Fix also some trivial quoting in configure.ac
* remove cruftdevzero20002013-07-041-163/+0
|
* - fix: remove duplicated /bin/sh (with bizarre error message).jbj2013-07-041-2/+1
|
* - ignore "make distcheck" cruft.jbj2013-07-041-0/+2
|
* - fix: permit reading aliases, remove left over "goto exit" replacing by assert.jbj2013-07-031-1/+0
|
* fail autogen.sh if autoreconf faildevzero20002013-07-032-2/+3
|
* /tmp/m4devzero20002013-07-032-3/+5
|
* Don't use MALLOC_CHECK_ and valgrind(memcheck) at thedevzero20002013-07-033-10/+52
| | | | | | | | | | | | | | | | | | | same time The test suite can use valgrind(memcheck) via 'configure --enable-valgrind' Memcheck wraps client calls to malloc(), and puts a "red zone" on each end of each block in order to detect access overruns. Memcheck already detects double free() (up to the limit of the buffer which remembers pending free()). Thus memcheck subsumes all the documented coverage of MALLOC_CHECK_. If MALLOC_CHECK_ is set non-zero when running memcheck, then the overruns that might be detected by MALLOC_CHECK_ would be overruns on the wrapped blocks which include the red zones. Thus MALLOC_CHECK_ would be checking memcheck, and not the client. This is not useful, and actually is wasteful. The only possible [documented] advantage of using MALLOC_CHECK_ and memcheck together, would be if MALLOC_CHECK_ detected duplicate free() in more cases than memcheck because memcheck's buffer is too small.