From: Fred Morcos Date: Tue, 22 Aug 2023 13:20:37 +0000 (+0200) Subject: Meson: Fix platform detection on MacOS X-Git-Tag: rec-5.1.0-alpha1~80^2~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae635fd6fab55d0bd00f8339f26c59084a7d0386;p=thirdparty%2Fpdns.git Meson: Fix platform detection on MacOS --- diff --git a/meson/platform/meson.build b/meson/platform/meson.build index 6b224538bc..52f03c9491 100644 --- a/meson/platform/meson.build +++ b/meson/platform/meson.build @@ -1,6 +1,7 @@ platforms = [ ['linux', [['HAVE_LINUX', 'On Linux']], [], []], - ['darwin', [['HAVE_DARWIN', 'On Darwin/MacOS']], [], ['__APPLE_USE_RFC_3542', '_XOPEN_SOURCE', '_DARWIN_C_SOURCE'], []], + ['darwin', [['HAVE_DARWIN', 'On Darwin/MacOS']], + ['__APPLE_USE_RFC_3542', '_XOPEN_SOURCE', '_DARWIN_C_SOURCE'], []], ['openbsd', [['HAVE_OPENBSD', 'On OpenBSD']], [], []], ['freebsd', [['HAVE_FREEBSD', 'On FreeBSD']], [], []], ['sunos', [['HAVE_SOLARIS', 'On Solaris/SunOS'],