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 6d8812a3a9fe6da8efc9877170f06a0e29bf6759
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 21 09:06:48 2024 +0500
meson: change sys_osx to APPLE
---
meson/header_checks/meson.build | 2 +-
src/bindings/mono/efl_mono/meson.build | 2 +-
src/lib/eina/meson.build | 2 +-
src/lib/eio/meson.build | 2 +-
src/modules/ecore/meson.build | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/meson/header_checks/meson.build b/meson/header_checks/meson.build
index e83c5d0458..717459ccf0 100644
--- a/meson/header_checks/meson.build
+++ b/meson/header_checks/meson.build
@@ -243,7 +243,7 @@ if sys_bsd
config_h.set('HAVE_NOTIFY_KEVENT', '1')
endif
-if sys_osx
+if APPLE
config_h.set('HAVE_NOTIFY_COCOA', '1')
endif
config_h.set('SIZEOF_INT', cc.sizeof('int'))
diff --git a/src/bindings/mono/efl_mono/meson.build b/src/bindings/mono/efl_mono/meson.build
index 0ea0a9cfbf..b38574a803 100644
--- a/src/bindings/mono/efl_mono/meson.build
+++ b/src/bindings/mono/efl_mono/meson.build
@@ -15,7 +15,7 @@ map = run_command('map_generate.sh', check: false).stdout()
efl_libs = configuration_data()
efl_libs.set('EFL_MONO_LIBRARY_MAP', map)
efl_libs.set('EVIL_DL_MONO', 'dl')
-if sys_osx
+if APPLE
efl_libs.set('LIBDL_DL_MONO', 'dl.dylib')
efl_libs.set('CUSTOM_EXPORTS_MONO_DL_MONO', 'eflcustomexportsmono')
elif WINDOWS
diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build
index 298568bc4e..54ccb7e21f 100644
--- a/src/lib/eina/meson.build
+++ b/src/lib/eina/meson.build
@@ -332,7 +332,7 @@ if cc.has_header_symbol('pthread.h', 'pthread_spin_init')
eina_config.set('EINA_HAVE_POSIX_SPINLOCK', '1')
endif
-if sys_osx
+if APPLE
if cc.has_header_symbol('libkern/OSAtomic.h', 'OSSpinLockTry')
eina_config.set('EINA_HAVE_OSX_SPINLOCK', 1)
endif
diff --git a/src/lib/eio/meson.build b/src/lib/eio/meson.build
index 2768ebe4dd..296eb4db50 100644
--- a/src/lib/eio/meson.build
+++ b/src/lib/eio/meson.build
@@ -54,7 +54,7 @@ linker_args = []
if WINDOWS
eio_src += files('eio_monitor_win32.c')
-elif sys_osx
+elif APPLE
eio_src += files('eio_monitor_cocoa.c')
linker_args = [['-framework', 'CoreServices']]
elif LINUX
diff --git a/src/modules/ecore/meson.build b/src/modules/ecore/meson.build
index 7c7fe6c115..a9753271d2 100644
--- a/src/modules/ecore/meson.build
+++ b/src/modules/ecore/meson.build
@@ -1,5 +1,5 @@
-if not WINDOWS and not sys_osx
+if not WINDOWS and not APPLE
system_modules = [
'systemd',
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.