File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed
Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cli : new : zstdmt symlink hardwired to `zstd -T0`
55cli : new : command --threads=# (#671)
66cli : changed : cover dictionary builder by default, for improved quality, by Nick Terrell
77cli : 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
99cli : fix : does not output compressed data on console
1010cli : fix : ignore symbolic links unless --force specified,
1111API : breaking change : ZSTD_createCDict_advanced(), only use compressionParameters as argument
Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ ZLIBLD = -lz
106106else
107107ZLIB_MSG := $(NO_ZLIB_MSG )
108108endif
109+
109110# lzma detection
110111NO_LZMA_MSG := ==> no liblzma, building zstd without .xz/.lzma support
111112HAVE_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
116117else
117118LZMA_MSG := $(NO_LZMA_MSG )
118119endif
120+
119121# lz4 detection
120122NO_LZ4_MSG := ==> no liblz4, building zstd without .lz4 support
121123HAVE_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)
127129LZ4_MSG := $(NO_LZ4_MSG )
128130endif
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
135134default : zstd-release
@@ -221,6 +220,9 @@ clean:
221220clean_decomp_o :
222221 @$(RM ) $(ZSTDDECOMP_O )
223222
223+ MD2ROFF = ronn
224+ MD2ROFF_FLAGS = --roff --warnings --manual="User Commands" --organization="zstd $(ZSTD_VERSION ) "
225+
224226zstd.1 : zstd.1.md
225227 cat $^ | $(MD2ROFF ) $(MD2ROFF_FLAGS ) | sed -n ' /^\.\\\".*/!p' > $@
226228
You can’t perform that action at this time.
0 commit comments