Skip to content

Commit

Permalink
Merge pull request #22 from AlyoshaVasilieva/v193-a
Browse files Browse the repository at this point in the history
Update to lz4 v1.9.3 (again)
  • Loading branch information
pmarks committed Mar 7, 2022
2 parents e8bc89e + 08329c2 commit a757db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lz4-sys/liblz4
Submodule liblz4 updated 94 files
+5 −0 .cirrus.yml
+32 −0 .github/ISSUE_TEMPLATE/bug_report.md
+20 −0 .github/ISSUE_TEMPLATE/feature_request.md
+3 −0 .gitignore
+25 −9 .travis.yml
+10 −5 Makefile
+36 −0 NEWS
+11 −12 README.md
+21 −15 appveyor.yml
+16 −0 build/.gitignore
+10 −8 build/README.md
+0 −0 build/VS2010/datagen/datagen.vcxproj
+0 −0 build/VS2010/frametest/frametest.vcxproj
+0 −0 build/VS2010/fullbench-dll/fullbench-dll.vcxproj
+0 −0 build/VS2010/fullbench/fullbench.vcxproj
+0 −0 build/VS2010/fuzzer/fuzzer.vcxproj
+0 −0 build/VS2010/liblz4-dll/liblz4-dll.rc
+0 −0 build/VS2010/liblz4-dll/liblz4-dll.vcxproj
+0 −0 build/VS2010/liblz4/liblz4.vcxproj
+0 −0 build/VS2010/lz4.sln
+0 −0 build/VS2010/lz4/lz4.rc
+0 −0 build/VS2010/lz4/lz4.vcxproj
+0 −0 build/VS2017/datagen/datagen.vcxproj
+0 −0 build/VS2017/frametest/frametest.vcxproj
+0 −0 build/VS2017/fullbench-dll/fullbench-dll.vcxproj
+0 −0 build/VS2017/fullbench/fullbench.vcxproj
+0 −0 build/VS2017/fuzzer/fuzzer.vcxproj
+0 −0 build/VS2017/liblz4-dll/liblz4-dll.rc
+0 −0 build/VS2017/liblz4-dll/liblz4-dll.vcxproj
+0 −0 build/VS2017/liblz4/liblz4.vcxproj
+10 −0 build/VS2017/lz4.sln
+51 −0 build/VS2017/lz4/lz4.rc
+164 −0 build/VS2017/lz4/lz4.vcxproj
+0 −0 build/cmake/.gitignore
+13 −6 build/cmake/CMakeLists.txt
+2 −2 contrib/debian/copyright
+1 −2 contrib/debian/rules
+2 −3 contrib/gen_manual/gen_manual.cpp
+5 −109 contrib/meson/meson.build
+0 −0 contrib/meson/meson/GetLz4LibraryVersion.py
+0 −0 contrib/meson/meson/InstallSymlink.py
+1 −1 contrib/meson/meson/contrib/gen_manual/meson.build
+0 −0 contrib/meson/meson/contrib/meson.build
+1 −1 contrib/meson/meson/examples/meson.build
+1 −1 contrib/meson/meson/lib/meson.build
+117 −0 contrib/meson/meson/meson.build
+1 −1 contrib/meson/meson/programs/meson.build
+1 −1 contrib/meson/meson/tests/meson.build
+30 −19 doc/lz4_Frame_format.md
+83 −46 doc/lz4_manual.html
+7 −5 doc/lz4frame_manual.html
+1 −1 examples/Makefile
+2 −2 examples/frameCompress.c
+6 −6 examples/streaming_api_basics.md
+1 −1 lib/Makefile
+27 −10 lib/README.md
+327 −230 lib/lz4.c
+80 −70 lib/lz4.h
+93 −54 lib/lz4frame.c
+22 −14 lib/lz4frame.h
+192 −115 lib/lz4hc.c
+15 −40 lib/lz4hc.h
+12 −8 ossfuzz/Makefile
+11 −5 ossfuzz/compress_frame_fuzzer.c
+9 −2 ossfuzz/compress_fuzzer.c
+10 −3 ossfuzz/compress_hc_fuzzer.c
+11 −3 ossfuzz/decompress_frame_fuzzer.c
+6 −2 ossfuzz/decompress_fuzzer.c
+77 −0 ossfuzz/fuzz_data_producer.c
+36 −0 ossfuzz/fuzz_data_producer.h
+8 −4 ossfuzz/round_trip_frame_fuzzer.c
+9 −2 ossfuzz/round_trip_fuzzer.c
+7 −2 ossfuzz/round_trip_hc_fuzzer.c
+6 −1 ossfuzz/travisoss.sh
+1 −0 programs/.gitignore
+21 −7 programs/Makefile
+233 −43 programs/bench.c
+2 −1 programs/bench.h
+32 −18 programs/lz4cli.c
+316 −248 programs/lz4io.c
+9 −9 programs/lz4io.h
+6 −5 programs/platform.h
+74 −22 programs/util.h
+1 −0 tests/.gitignore
+150 −85 tests/Makefile
+1 −9 tests/checkFrame.c
+49 −0 tests/decompress-partial.c
+60 −24 tests/frametest.c
+64 −15 tests/fullbench.c
+243 −60 tests/fuzzer.c
+8 −0 tests/test_install.sh
+ tmp
+ tmpsparse
+0 −10 visual/.gitignore

0 comments on commit a757db8

Please sign in to comment.