summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorAlexander Mohr <alexander.m.mohr@mercedes-benz.com>2022-07-05 18:52:50 (GMT)
committerAlexander Mohr <alexander.m.mohr@mercedes-benz.com>2022-07-05 19:14:34 (GMT)
commit0ac3c74de1b6de584c361f3e9485dde35f10c756 (patch)
tree24ad2216f485618fb07a09fd4e1c67bf352dc487 /contrib
parent42eb47d42f041054140b8e08ffc6ba85e9f092f2 (diff)
downloadlz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.zip
lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.tar.gz
lz4-0ac3c74de1b6de584c361f3e9485dde35f10c756.tar.bz2
review: fix findings
* replace assert with test for LZ4F_uncompressedUpdate * update documentation to incldue correct docstring * remove unecessary entry point * remove compress_linked_block_mode from fuzzing test Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/meson/meson/examples/meson.build2
-rw-r--r--contrib/meson/meson/lib/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/meson/meson/examples/meson.build b/contrib/meson/meson/examples/meson.build
index f6b6c41..65f54ca 100644
--- a/contrib/meson/meson/examples/meson.build
+++ b/contrib/meson/meson/examples/meson.build
@@ -26,7 +26,7 @@ foreach e, src : examples
executable(
e,
lz4_source_root / 'examples' / src,
- dependencies: [liblz4_dep, liblz4_internal_dep],
+ dependencies: [liblz4_internal_dep],
install: false
)
endforeach
diff --git a/contrib/meson/meson/lib/meson.build b/contrib/meson/meson/lib/meson.build
index 2ff294d..469cd09 100644
--- a/contrib/meson/meson/lib/meson.build
+++ b/contrib/meson/meson/lib/meson.build
@@ -43,7 +43,7 @@ liblz4_dep = declare_dependency(
include_directories: include_directories(lz4_source_root / 'lib')
)
-if get_option('tests') or get_option('programs')
+if get_option('tests') or get_option('programs') or get_option('examples')
liblz4_internal = static_library(
'lz4-internal',
objects: liblz4.extract_all_objects(recursive: true),