This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch dev/dimmus/test
in repository efl.
View the commit online.
commit 48decbc717e4ce5cb0e9415743087a1a9769f5e5
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 21 09:05:57 2024 +0500
meson: change sys_linux to LINUX
---
meson/header_checks/meson.build | 2 +-
src/lib/ecore_file/meson.build | 2 +-
src/lib/eina/meson.build | 2 +-
src/lib/eio/meson.build | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/meson/header_checks/meson.build b/meson/header_checks/meson.build
index 74546d27c6..e83c5d0458 100644
--- a/meson/header_checks/meson.build
+++ b/meson/header_checks/meson.build
@@ -209,7 +209,7 @@ if cc.has_header_symbol('sys/stat.h', 'fstatat')
config_h.set10('HAVE_ATFILE_SOURCE', true)
endif
-if sys_linux and config_h.has('HAVE_LISTXATTR') and config_h.has('HAVE_SETXATTR') and config_h.has('HAVE_GETXATTR')
+if LINUX and config_h.has('HAVE_LISTXATTR') and config_h.has('HAVE_SETXATTR') and config_h.has('HAVE_GETXATTR')
config_h.set10('HAVE_XATTR', true)
endif
diff --git a/src/lib/ecore_file/meson.build b/src/lib/ecore_file/meson.build
index e1a984fd6a..edaf986804 100644
--- a/src/lib/ecore_file/meson.build
+++ b/src/lib/ecore_file/meson.build
@@ -12,7 +12,7 @@ ecore_file_src = files(
if WINDOWS
ecore_file_src += files( 'ecore_file_monitor_win32.c')
-elif sys_linux
+elif LINUX
ecore_file_src += files( 'ecore_file_monitor_inotify.c')
elif sys_bsd
ecore_file_src += files( 'ecore_file_monitor_kevent.c')
diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build
index 964a1e68b2..298568bc4e 100644
--- a/src/lib/eina/meson.build
+++ b/src/lib/eina/meson.build
@@ -283,7 +283,7 @@ if cc.has_header_symbol('pthread.h', 'pthread_barrier_init')
eina_config.set('EINA_HAVE_PTHREAD_BARRIER', '1')
endif
-if sys_linux
+if LINUX
pthread_np_header_file = 'pthread.h'
pthread_setname_np_api = 'pthread_setname_np'
pthread_args = '-D_GNU_SOURCE'
diff --git a/src/lib/eio/meson.build b/src/lib/eio/meson.build
index 0d63708e4f..2768ebe4dd 100644
--- a/src/lib/eio/meson.build
+++ b/src/lib/eio/meson.build
@@ -57,7 +57,7 @@ if WINDOWS
elif sys_osx
eio_src += files('eio_monitor_cocoa.c')
linker_args = [['-framework', 'CoreServices']]
-elif sys_linux
+elif LINUX
eio_src += files('eio_monitor_inotify.c')
elif sys_bsd
eio_src += files('eio_monitor_kevent.c')
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.