]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
updated dict graphs to 2D mode
authorYann Collet <cyan@fb.com>
Wed, 3 May 2017 21:32:33 +0000 (14:32 -0700)
committerYann Collet <cyan@fb.com>
Wed, 3 May 2017 21:33:28 +0000 (14:33 -0700)
NEWS
doc/images/dict-cr.png
doc/images/dict-cs.png
doc/images/dict-ds.png
programs/Makefile

diff --git a/NEWS b/NEWS
index 407f3b8ac82637272bd4b9f8a4aff7420e2b8f13..7d9c9c94e186a5571bf1ecc9acb5b2229d3f6b9e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,7 +5,7 @@ cli : new : zstdmt symlink hardwired to `zstd -T0`
 cli : new : command --threads=# (#671)
 cli : changed : cover dictionary builder by default, for improved quality, by Nick Terrell
 cli : new : commands --train-cover and --train-legacy, to select dictionary algorithm and parameters
-cli : new : experimental target `zstd4`, with support for lz4 format, by Sean Purcell
+cli : experimental targets `zstd4` and `xzstd4`, with support for lz4 format, by Sean Purcell
 cli : fix : does not output compressed data on console
 cli : fix : ignore symbolic links unless --force specified,
 API : breaking change : ZSTD_createCDict_advanced(), only use compressionParameters as argument
index f555a46c7b99b512966ca81ad8283d7f164ae160..f3a9ce2bdda64c7f370642d596a5cc1fdf50bf54 100644 (file)
Binary files a/doc/images/dict-cr.png and b/doc/images/dict-cr.png differ
index ccc02b0d17134efca5b4df2e932e901b474eaea2..55e5ef518fed8b9c598a79ec614c8064be8edd7c 100644 (file)
Binary files a/doc/images/dict-cs.png and b/doc/images/dict-cs.png differ
index 858cad685509b24a9d00655e73369cacdc8dd5b2..1153f1b95fd59d83448b93945fca4efe7c60df34 100644 (file)
Binary files a/doc/images/dict-ds.png and b/doc/images/dict-ds.png differ
index 491b3ed3a4d70111cfbb344ab03f03b8457eb99d..0c920a87bcbd89432f96a5b0fc6721199e4571b3 100644 (file)
@@ -106,6 +106,7 @@ ZLIBLD = -lz
 else
 ZLIB_MSG := $(NO_ZLIB_MSG)
 endif
+
 # lzma detection
 NO_LZMA_MSG := ==> no liblzma, building zstd without .xz/.lzma support
 HAVE_LZMA := $(shell printf '\#include <lzma.h>\nint main(void) { return 0; }' | $(CC) $(FLAGS) -o have_lzma$(EXT) -x c - -llzma 2> $(VOID) && rm have_lzma$(EXT) && echo 1 || echo 0)
@@ -116,6 +117,7 @@ LZMALD = -llzma
 else
 LZMA_MSG := $(NO_LZMA_MSG)
 endif
+
 # lz4 detection
 NO_LZ4_MSG := ==> no liblz4, building zstd without .lz4 support
 HAVE_LZ4 := $(shell printf '\#include <lz4frame.h>\n\#include <lz4.h>\nint main(void) { return 0; }' | $(CC) $(FLAGS) -o have_lz4$(EXT) -x c - -llz4 2> $(VOID) && rm have_lz4$(EXT) && echo 1 || echo 0)
@@ -127,9 +129,6 @@ else
 LZ4_MSG := $(NO_LZ4_MSG)
 endif
 
-MD2ROFF  =ronn
-MD2ROFF_FLAGS  = --roff --warnings --manual="User Commands" --organization="zstd $(ZSTD_VERSION)"
-
 .PHONY: default all clean clean_decomp_o install uninstall generate_res
 
 default: zstd-release
@@ -221,6 +220,9 @@ clean:
 clean_decomp_o:
        @$(RM) $(ZSTDDECOMP_O)
 
+MD2ROFF = ronn
+MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="zstd $(ZSTD_VERSION)"
+
 zstd.1: zstd.1.md
        cat $^ | $(MD2ROFF) $(MD2ROFF_FLAGS) | sed -n '/^\.\\\".*/!p' > $@