zstd: update to 1.3.7.

This commit is contained in:
maxice8 2018-10-20 14:09:29 -03:00 committed by maxice8
parent c2e2dda529
commit dab707e2f6
2 changed files with 6 additions and 24 deletions

View File

@ -1,18 +0,0 @@
diff --git a/programs/fileio.c b/programs/fileio.c
index ed3a29c..0b1b413 100644
--- programs/fileio.c
+++ programs/fileio.c
@@ -20,12 +20,6 @@
# define _POSIX_SOURCE 1 /* disable %llu warnings with MinGW on Windows */
#endif
-#if !defined(BACKTRACES_ENABLE) && \
- (defined(__linux__) || (defined(__APPLE__) && defined(__MACH__)) )
-# define BACKTRACES_ENABLE 1
-#endif
-
-
/*-*************************************
* Includes
***************************************/

View File

@ -1,6 +1,6 @@
# Template file for 'zstd'
pkgname=zstd
version=1.3.6
version=1.3.7
revision=1
short_desc="Fast real-time compression algorithm - CLI tool"
makedepends="zlib-devel liblzma-devel"
@ -9,17 +9,17 @@ maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="BSD-3-Clause, GPL-2.0-or-later"
homepage="http://www.zstd.net"
distfiles="https://github.com/facebook/zstd/archive/v${version}.tar.gz"
checksum=7f5516148fb66b184cbd6e4e8202997754b6a9d3d016ee789cda87f2fa659dc7
checksum=5dd1e90eb16c25425880c8a91327f63de22891ffed082fcc17e5ae84fce0d5fb
do_build() {
make
make -C contrib/pzstd
make ${makejobs}
make ${makejobs} -C contrib/pzstd
}
do_check() {
# using the test target is too expensive
make shortest
make -C contrib/pzstd tests check
make ${makejobs} shortest
make ${makejobs} -C contrib/pzstd tests check
}