aboutsummaryrefslogtreecommitdiff
path: root/libs/tiff/patches/005-fix-ftell-macro.patch
Commit message (Collapse)AuthorAge
* tiff: update to 4.2.3Rosen Penev2021-06-01
| | | | | | | | Remove automake patch as it's not used. Remove ftell patch as it seems to not be needed anymore. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tiff: update version to 4.1.0Jiri Slachta2019-11-11
| | | | Signed-off-by: Jiri Slachta <jiri@slachta.eu>
* tiff: Update to 4.0.10Rosen Penev2018-11-14
| | | | | | Fixes all CVEs as well as a few more. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tiff: version bumpSebastian Kemper2018-01-30
| | | | | | | - bump version to 4.0.9 - add patches copied from Debian for CVE-2017-18013 and CVE-2017-9935 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* tiff: fix wrong declaration of ftell() compat macroJo-Philipp Wich2016-05-19
The libtiff library declares an `ftell()` compat macro redirecting calls to `ftello()` if such an implementation exists. The compat macro however is declared with a wrong number of arguments, leading to the following error on our buildbots: In file included from .../usr/include/uClibc++/iostream:29:0, from tif_stream.cxx:31: .../usr/include/uClibc++/fstream:422:22: error: macro "ftell" requires 3 arguments, but only 1 given retval = ftell(fp); Add a patch to fix the macro definition in order to fix compilation of the tiff package. Signed-off-by: Jo-Philipp Wich <jo@mein.io>