aboutsummaryrefslogtreecommitdiff
path: root/utils/zip/patches/001-unix-configure-borrow-the-LFS-test-from-autotools.patch
Commit message (Collapse)AuthorAge
* zip: rename package to infozip to avoid name collision with toolsHannu Nyman2020-02-01
| | | | | | | | | | | Rename "zip" to "infozip" to avoid name collision, as the same zip package has been introduces to the build tools as zip. Buildbot does not like that. Reference to #10985 and #11089 as well as https://github.com/openwrt/openwrt/commit/ad8c2d6099a7da5192ee6e2c52a8303642271877 Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* utils/zip: fix LARGE_FILE_SUPPORT in configure scriptp-wassi2016-11-20
Package zip is currently broken with a runtime error. When zip is run, it immediately exits with "zip warning : Not supported (uzoff_t not same size as zoff_t)" The issue boils down to the package's configure script which tries to determine LARGE_FILE_SUPPORT on *host* side. The conftest.c is compiled and ran on the building host to see whether LFS is given or not. This will fail when cross-compiling. The patch here is created by Romain Naour, taken from http://lists.busybox.net/pipermail/buildroot/2015-January/117909.html Reworked and tested by me. Now LFS is detected and the built binaries work on the target. Signed-off-by: Paul Wassi <p.wassi@gmx.at>