From a43fb3c203cea7a49d54005651ff4662d11ec023 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 4 Mar 2019 18:33:33 +0100 Subject: [PATCH] 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 Differential Revision: https://phab.enlightenment.org/D8097 --- header_checks/meson.build | 3 +++ 1 file changed, 3 insertions(+) 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'))