From 645f5e6a850de3e3160edbdebdab26301773a683 Mon Sep 17 00:00:00 2001 From: Matt Jolly Date: Mon, 28 Oct 2024 12:19:36 +1000 Subject: [PATCH] meson: add `HOST_MACOS` Reported-by: Jaimos Skriletz Signed-off-by: Matt Jolly --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index e7c50cf3f..42dff9c52 100644 --- a/meson.build +++ b/meson.build @@ -65,6 +65,10 @@ if host_machine.endian() == 'big' conf.set('WORDS_BIGENDIAN', true) endif +if host_machine.system() == 'darwin' + conf.set10('HOST_MACOS', true) +endif + # Set static configuration. conf.set_quoted('VERSION', meson.project_version()) conf.set_quoted('VERSIONINFO', fvwm_vcs_versioninfo)