Skip to content

Commit c08e568

Browse files
committed
updated dict graphs to 2D mode
1 parent 710497d commit c08e568

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cli : new : zstdmt symlink hardwired to `zstd -T0`
55
cli : new : command --threads=# (#671)
66
cli : changed : cover dictionary builder by default, for improved quality, by Nick Terrell
77
cli : new : commands --train-cover and --train-legacy, to select dictionary algorithm and parameters
8-
cli : new : experimental target `zstd4`, with support for lz4 format, by Sean Purcell
8+
cli : experimental targets `zstd4` and `xzstd4`, with support for lz4 format, by Sean Purcell
99
cli : fix : does not output compressed data on console
1010
cli : fix : ignore symbolic links unless --force specified,
1111
API : breaking change : ZSTD_createCDict_advanced(), only use compressionParameters as argument

doc/images/dict-cr.png

65.2 KB
Loading

doc/images/dict-cs.png

67.2 KB
Loading

doc/images/dict-ds.png

61.1 KB
Loading

programs/Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ ZLIBLD = -lz
106106
else
107107
ZLIB_MSG := $(NO_ZLIB_MSG)
108108
endif
109+
109110
# lzma detection
110111
NO_LZMA_MSG := ==> no liblzma, building zstd without .xz/.lzma support
111112
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
116117
else
117118
LZMA_MSG := $(NO_LZMA_MSG)
118119
endif
120+
119121
# lz4 detection
120122
NO_LZ4_MSG := ==> no liblz4, building zstd without .lz4 support
121123
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
127129
LZ4_MSG := $(NO_LZ4_MSG)
128130
endif
129131

130-
MD2ROFF =ronn
131-
MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="zstd $(ZSTD_VERSION)"
132-
133132
.PHONY: default all clean clean_decomp_o install uninstall generate_res
134133

135134
default: zstd-release
@@ -221,6 +220,9 @@ clean:
221220
clean_decomp_o:
222221
@$(RM) $(ZSTDDECOMP_O)
223222

223+
MD2ROFF = ronn
224+
MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="zstd $(ZSTD_VERSION)"
225+
224226
zstd.1: zstd.1.md
225227
cat $^ | $(MD2ROFF) $(MD2ROFF_FLAGS) | sed -n '/^\.\\\".*/!p' > $@
226228

0 commit comments

Comments
 (0)