diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-03-04 18:33:33 +0100 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-03-06 19:11:40 +0100 |
commit | a43fb3c203cea7a49d54005651ff4662d11ec023 (patch) | |
tree | b2667afbfe10309cc1e9c1547461ff7a4c94c6f3 /header_checks | |
parent | 595c863fed004b279517b76a02da8fae074ae3a3 (diff) | |
download | efl-a43fb3c203cea7a49d54005651ff4662d11ec023.tar.gz |
build: unbreak build for osx
We have CI! And even through our Infra is dead and too stupid to use it,
you can push your commits there before. This means *you can test* if you
build "fixes" are fixing all platforms, or break for example osx. *This
one* brings osx back.
<3 CI!
Reviewed-by: Lauro Neto <lauromauro_>
Differential Revision: https://phab.enlightenment.org/D8097
Diffstat (limited to 'header_checks')
-rw-r--r-- | header_checks/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/header_checks/meson.build b/header_checks/meson.build index 8355eda8e8..c77ad94c34 100644 --- a/header_checks/meson.build +++ b/header_checks/meson.build @@ -208,6 +208,9 @@ if sys_bsd == true config_h.set('HAVE_NOTIFY_KEVENT', '1') endif +if sys_osx == true + config_h.set('HAVE_NOTIFY_COCOA', '1') +endif config_h.set('SIZEOF_INT', cc.sizeof('int')) config_h.set('SIZEOF_LONG', cc.sizeof('long')) |