aboutsummaryrefslogtreecommitdiff
path: root/libs/libpng
Commit message (Collapse)AuthorAge
* libpng: update to 1.6.43krant2024-04-07
| | | | Signed-off-by: krant <aleksey.vasilenko@gmail.com>
* libpng: update to 1.6.42krant2024-02-21
| | | | | | | | - Don't set default and rename renamed CMake options - Enable NEON optimizations - Rebase the patch Signed-off-by: krant <aleksey.vasilenko@gmail.com>
* treewide: fix licence typosFabrice Fontaine2024-01-31
| | | | | | | | | | | | | - PKG_LICENCE -> PKG_LICENSE - PKC_LICENSE_FILES -> PKG_LICENSE_FILES - BSD 3-Clause -> BSD-3-Clause - BSD-3-clause -> BSD-3-Clause - BSD-2-clause -> BSD-2-Clause - Public Domain -> Public-Domain - PublicDomain -> Public-Domain - Drop unneeded ',' in PKG_LICENSE or PKG_LICENSE_FILES Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* libpng: update to 1.6.39Nick Hainke2023-05-16
| | | | | | | | | Changelog: https://github.com/glennrp/libpng/blob/v1.6.39/CHANGES Fixes CVE-2019-6129. Signed-off-by: Nick Hainke <vincent@systemli.org>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* libpng: update to 1.6.38Rosen Penev2022-11-04
| | | | | | Remove upstream backports. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: back to cmake.mkRosen Penev2021-06-12
| | | | | | Ninja was merged to base and therefore we can now use normal cmake.mk Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: do not build MIPS MSA code at allRosen Penev2021-03-24
| | | | | | | | | The CMake file matches on mipsel and mips64el. Just remove mips altogether. Also build with ninja for faster compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: properly fix zlib issueRosen Penev2020-12-14
| | | | | | | | | | | | The previous commit meant to avoid adding an LDFLAG but it just avoided the issue. The real issue is PNG_BUILD_ZLIB being turned to ON. This variable is for specifying a custom zlib location, which is not necessary. Switching it to OFF calls find_package and links properly. Backported two zlib related patches. The latter is a somewhat impoarant fix. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: disable building of executablesRosen Penev2020-12-13
| | | | | | | | | | They are not packaged here. Upstream backport. Speeds up compilation and avoids a zlib hack. Refreshed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: fix paths in config filesRosen Penev2020-12-10
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: fix compilation with ccacheRosen Penev2020-07-05
| | | | | | It seems an extra CMake variable is needed for one of the scripts. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: remove hardware optimizations for mipselRosen Penev2020-07-04
| | | | | | | The mipsel optimizations are only MSA and not any DSP, which means they're useless for OpenWrt targets. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: switch to CMakeRosen Penev2020-06-28
| | | | | | | | Allows simplification of the Makefile. Remove no more needed patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: remove host buildRosen Penev2020-06-02
| | | | | | Nothing uses this. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Enable VFP/NEON optimizations for aarch64Jeffery To2020-05-12
| | | | | | | | For speexdsp, support for NEON on aarch64 was added in 1.2.0[1]. [1]: https://github.com/xiph/speexdsp/pull/8 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* treewide: Update ARM NEON/VFP detectionJeffery To2020-05-11
| | | | | | | | | | With openwrt/openwrt@8dcc1087602e2dd606e4f6e81a06aee62cfd4f4c, the ARM FPU compiler options are no longer part of CONFIG_TARGET_OPTIMIZATION. This updates various packages that look for NEON/VFP support to search CONFIG_CPU_TYPE instead. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* treewide: Change .*GPL.*+ licenses to SPDX compatible identifierSven Eckelmann2019-09-10
| | | | | | | | The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL licenses. But a lot of packages did use a different, non-SPDX style with a "+" at the end instead of "-or-later". Signed-off-by: Sven Eckelmann <sven@narfation.org>
* libpng: update to version 1.6.37Jan Pavlinec2019-04-25
| | | | | | Fixes CVE-2019-7317 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* libpng: Update to 1.6.36Rosen Penev2018-12-26
| | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpng: Update to 1.6.35Rosen Penev2018-09-14
| | | | | | | | Fixes CVE-2018-13785 and CVE-2018-14048. Added PKG_CPE_ID for proper CVE tracking. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libs/libpng: Update to 1.6.34Daniel Engberg2017-12-04
| | | | | Update libpng to 1.6.34 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* libs/libpng: Update to 1.6.32Daniel Engberg2017-10-16
| | | | | | | Update libpng to 1.6.32 Add ARM NEON optimization Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* libs/libpng: Add more symlinksDaniel Engberg2017-04-17
| | | | | | Sprinkle more symlinks for compatibility Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* libs/libpng: Update to 1.6.29Daniel Engberg2017-04-01
| | | | | | | Update libpng to 1.6.29 Add patch to allow older versions of libtool Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* libpng: update to 1.2.57Daniel Albers2017-01-03
| | | | | | Fixes CVE-2016-10087 Signed-off-by: Daniel Albers <Daniel.Albers@public-files.de>
* treewide: replace my defunct email addressJo-Philipp Wich2016-06-07
| | | | Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* libpng: update to 1.2.56Oliver Middleton2015-12-29
| | | | | | Fixes CVE-2015-8126 and CVE-2015-8540. Signed-off-by: Oliver Middleton <olliemail27@gmail.com>
* libpng: update to 1.2.54Oliver Middleton2015-11-22
| | | | | | Includes fixes for CVE-2015-7981 and CVE-2015-8126. Signed-off-by: Oliver Middleton <olliemail27@gmail.com>
* libpng: update to 1.2.52Ian Leonard2014-12-08
| | | | Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* libpng: import from oldpackages, add myself as maintainer, change ↵Jo-Philipp Wich2014-07-02
PKG_LICENSE to SPDX identifiers, update to v1.2.51 Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>