mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 15:48:26 -04:00
r196981 (rdivacky): Add C/c/f/p/v switches plus a bunch of minor fixes and cleanups. Obtained from: NetBSD r200844 (jh): Don't print the archive name with -p and -q options. PR: bin/141280 r201630 (kientzle): When restoring files, use the mode for the mode. Thanks to: Jun Kuriyama for pointing this out r203977 (gavin): Implement the rename query, for when a file with the same name as the one about to be extracted already exists. The question, and interpretation of the response is deliberately compatible with Info-Zip. This change was originally obtained from NetBSD, but has three changes: - better compatibility with Info-Zip in the handling of ^D - Use getdelim() rather than getline() - bug fix: != changed to == in the "file rename" code I suspect the latter is also a bug in NetBSD, but I can't easily confirm this. PR: bin/143307 Reviewed by: rdivacky (change to unzip.c only) Obtained from: NetBSD src/usr.bin/unzip/unzip.c 1.8 r203978 (gavin): Bump .Dd for r203977 r204352 (ru): Fixed static linkage. == Requested by: Alex Kozlov <spam rm-rf kiev ua>
9 lines
124 B
Makefile
9 lines
124 B
Makefile
# $FreeBSD$
|
|
|
|
PROG = unzip
|
|
WARNS ?= 6
|
|
CSTD = c99
|
|
DPADD = ${LIBARCHIVE} ${LIBZ}
|
|
LDADD = -larchive -lz
|
|
|
|
.include <bsd.prog.mk>
|