This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch devs/dimmus/meson
in repository efl.

View the commit online.

commit 6d4ece5faf6a0592b57815b93e95bd074cc50ca9
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Fri Dec 22 09:45:25 2023 +0500

    meson: make lz4 'required' when system version is in use
---
 src/static_libs/lz4/meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/static_libs/lz4/meson.build b/src/static_libs/lz4/meson.build
index ac99854a25..07d9149b72 100644
--- a/src/static_libs/lz4/meson.build
+++ b/src/static_libs/lz4/meson.build
@@ -1,4 +1,4 @@
-if (get_option('embedded-lz4'))
+if get_option('embedded-lz4')
   lz4_src = [
   'lz4.c',
   'lz4hc.c',
@@ -15,5 +15,5 @@ if (get_option('embedded-lz4'))
     link_with: lz4_lib
   )
 else
-  lz4 = dependency('liblz4')
+  lz4 = dependency('liblz4', required: true)
 endif

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to