From 102b454e253cc495fca7380b2833f68bef518a50 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Tue, 21 Nov 2023 15:31:22 +0100 Subject: [PATCH] [meson] libev/libevent conflict --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 8700e899..a0921b0a 100644 --- a/meson.build +++ b/meson.build @@ -132,6 +132,10 @@ if conf_data.get('CONFIG_QUICKJS') and conf_data.get('CONFIG_MUJS') error('mujs and quickjs cannot be both enabled') endif +if conf_data.get('CONFIG_LIBEV') and conf_data.get('CONFIG_LIBEVENT') + error('libev and libevent cannot be both enabled') +endif + conf_data.set('CONFIG_ECMASCRIPT_SMJS_HEARTBEAT', true) conf_data.set('CONFIG_SCRIPTING', true)