aboutsummaryrefslogtreecommitdiff
path: root/libs/libzip/patches
Commit message (Collapse)AuthorAge
* libzip: update to 1.10.1Michael Heimpold2023-11-18
| | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* libzip: update to 1.9.2Michael Heimpold2022-10-06
| | | | | | Also drop already mainlined patch. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* libzip: fix compilation without SSLRosen Penev2021-09-05
| | | | | | Linker error. No idea why. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libzip: fix typo in patch (fixes #15992)Michael Heimpold2021-07-02
| | | | | | This prevented expansion of libdir in pkgconfig. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* libzip: fix pkgconfig paths (fixes #15943)Michael Heimpold2021-06-29
| | | | | | | | We should use upstream patch here, which can be removed later, instead of maintaining our own one. Reported-by: Rosen Penev <rosenp@gmail.com> Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* libzip: update to 1.6.0Michael Heimpold2020-02-02
| | | | | | Also remove upstreamed patch. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* libzip: fix musl-fts failureSebastian Kemper2019-12-16
musl doesn't support fts. But with the extra package musl-fts installed, libzip picks up the fts header and fails at the linking stage: zipcmp.c:(.text.startup+0x130): undefined reference to `fts_open' /home/sk/tmp/openwrt/staging_dir/toolchain-mips_24kc_gcc-8.3.0_musl/lib/gcc/mips-openwrt-linux-musl/8.3.0/../../../../mips-openwrt-linux-musl/bin/ld: zipcmp.c:(.text.startup+0x172): undefined reference to `fts_read' So with musl-fts we need to link in libfts. To address that this commits patches the cmake setup to check if fts is available in libc itself or in any external libfts. So when musl-fts is installed on the system the setup will be the following: musl: use libfts uclibc: use fts from libc glibc: like uclibc Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>