summaryrefslogtreecommitdiff
path: root/archivers/cabextract/patches
AgeCommit message (Collapse)AuthorFilesLines
2004-10-29Make build on Interix (and possibly AIX). mempcpy() is not actually usedtv1-0/+22
anywhere, yet configure.ac declared an AC_REPLACE_FUNCS() for it. Rip out the offending code from configure until it is rebuilt at the source. (Patch to remove the AC_REPLACE_FUNCS submitted to author.)
2004-10-28Update to 1.1:wiz1-0/+19
* A security vulnerability has been fixed. If the files within a cabinet file include "../" in their filenames, this will be changed to "xx/", so cabinets cannot access the parent directory of where you want to extract them. * cabextract should now compile cleanly on AIX and Cygwin.
2004-03-10This patch is not needed by cabextract 1.0, remove it.ben1-12/+0
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam1-1/+1
have been converted to USE_BUILDLINK2.
2002-08-21upgrade to 0.6dillo1-123/+4
changes since 0.5: * pkgsrc fixes for 0.5 integrated * support for the Quantum compression method reverse-engineered by Matthew Russotto * cabextract now exhaustively searches your files for cabinets. If there's more than one cabinet in the same file, cabextract will find those too. * Spanning cabinets sets contain both a 'next' and 'previous' cabinet name. cabextract now searches backwards through the cabinet chain to find the start of a cabinet set, before searching in the forwards direction as usual.
2002-05-10Fixes:itohy1-0/+131
- Do not compute a pointer outside of an array. The original code did this and if the executable is mapped at the low address in virtual space, the "runsrc" value becomes ``negative'' address and caused crash. Package maintainers should use a.out to detect this sort of botches. :D - Fix usage of mktime(3). - Fix usage of tolower(3). Changes: - Honor umask for file mode. - Add a hack to handle self-extracting cabinet (*.exe).