642870485c
Update libarchive to version 3.3.1 (and sync with latest vendor dist) Notable vendor changes: PR #501: improvements in ACL path handling PR #724: fix hang when reading malformed cpio files PR #864: fix out of bounds read with malformed GNU tar archives Documentation, style, test suite improvements and typo fixes. New options to bsdtar that enable or disable reading and/or writing of: Access Control Lists (--acls, --no-acls) Extended file flags (--fflags, --no-fflags) Extended attributes (--xattrs, --no-xattrs) Mac OS X metadata (Mac OS X only) (--mac-metadata, --no-mac-metadata) MFC after: 2 weeks
40 lines
940 B
Makefile
40 lines
940 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
_LIBARCHIVEDIR= ${.CURDIR}/../../contrib/libarchive
|
|
_LIBARCHIVECONFDIR= ${.CURDIR}/../../lib/libarchive
|
|
|
|
PROG= bsdcpio
|
|
BSDCPIO_VERSION_STRING= 3.3.1
|
|
|
|
.PATH: ${_LIBARCHIVEDIR}/cpio
|
|
SRCS= cpio.c cmdline.c
|
|
|
|
.PATH: ${_LIBARCHIVEDIR}/libarchive_fe
|
|
SRCS+= err.c line_reader.c passphrase.c
|
|
|
|
CFLAGS+= -DBSDCPIO_VERSION_STRING=\"${BSDCPIO_VERSION_STRING}\"
|
|
CFLAGS+= -DPLATFORM_CONFIG_H=\"${_LIBARCHIVECONFDIR}/config_freebsd.h\"
|
|
CFLAGS+= -I${_LIBARCHIVEDIR}/cpio -I${_LIBARCHIVEDIR}/libarchive_fe
|
|
|
|
.ifdef RELEASE_CRUNCH
|
|
# FreeBSD's installer uses cpio in crunched binaries that are
|
|
# statically linked, cannot use -lcrypto, and are size sensitive.
|
|
CFLAGS+= -DSMALLER
|
|
.endif
|
|
LIBADD= archive
|
|
|
|
.if ${MK_ICONV} != "no"
|
|
CFLAGS+= -DHAVE_ICONV=1 -DHAVE_ICONV_H=1 -DICONV_CONST=const
|
|
.endif
|
|
|
|
SYMLINKS=bsdcpio ${BINDIR}/cpio
|
|
MLINKS= bsdcpio.1 cpio.1
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|