blob: 36c33f889bffcfc68bc2d4bf2c649c5e7c767bb9 [file] [log] [blame]
Andrew Geisslerc5535c92023-01-27 16:10:19 -06001From 3b4d6b89f644b43e507c08181fef06db4326f9da Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Alistair Francis <alistair@alistair23.me>
3Date: Thu, 14 Nov 2019 13:04:49 -0800
Brad Bishopa34c0302019-09-23 22:34:48 -04004Subject: [PATCH] meson.build: check for all linux host_os combinations
Brad Bishop393846f2019-05-20 12:24:11 -04005
6Make sure that we are also looking for our host_os combinations like
7linux-musl etc. when assuming support for DRM/KMS.
8
9Also delete a duplicate line.
10
Brad Bishop15ae2502019-06-18 21:44:24 -040011Upstream-Status: Pending
12
Brad Bishop393846f2019-05-20 12:24:11 -040013Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
14Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Brad Bishopa34c0302019-09-23 22:34:48 -040015Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Andrew Geissler82c905d2020-04-13 13:39:40 -050016Signed-off-by: Alistair Francis <alistair@alistair23.me>
Brad Bishop6dbb3162019-11-25 09:41:34 -050017
Brad Bishop393846f2019-05-20 12:24:11 -040018---
Brad Bishopa34c0302019-09-23 22:34:48 -040019 meson.build | 4 ++--
20 1 file changed, 2 insertions(+), 2 deletions(-)
Brad Bishop393846f2019-05-20 12:24:11 -040021
22diff --git a/meson.build b/meson.build
Andrew Geisslerc5535c92023-01-27 16:10:19 -060023index 172c64a..9b5294c 100644
Brad Bishop393846f2019-05-20 12:24:11 -040024--- a/meson.build
25+++ b/meson.build
Andrew Geissler87f5cff2022-09-30 13:13:31 -050026@@ -173,7 +173,7 @@ with_any_opengl = with_opengl or with_gles1 or with_gles2
Brad Bishop15ae2502019-06-18 21:44:24 -040027 # Only build shared_glapi if at least one OpenGL API is enabled
Andrew Geissler82c905d2020-04-13 13:39:40 -050028 with_shared_glapi = with_shared_glapi and with_any_opengl
Brad Bishop393846f2019-05-20 12:24:11 -040029
Andrew Geisslerc5535c92023-01-27 16:10:19 -060030-system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'gnu/kfreebsd', 'dragonfly', 'linux', 'sunos', 'android'].contains(host_machine.system())
31+system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'gnu/kfreebsd', 'dragonfly', 'linux', 'sunos', 'android'].contains(host_machine.system()) or host_machine.system().startswith('linux')
Brad Bishopa34c0302019-09-23 22:34:48 -040032
Andrew Geisslerc5535c92023-01-27 16:10:19 -060033 with_freedreno_kgsl = get_option('freedreno-kgsl')
34 if with_freedreno_kgsl
35@@ -1076,7 +1076,7 @@ if cc.has_function('reallocarray')
Brad Bishop393846f2019-05-20 12:24:11 -040036 endif
37
38 # TODO: this is very incomplete
Andrew Geissler87f5cff2022-09-30 13:13:31 -050039-if ['linux', 'cygwin', 'gnu', 'freebsd', 'gnu/kfreebsd', 'haiku', 'android'].contains(host_machine.system())
Andrew Geissler95ac1b82021-03-31 14:34:31 -050040+if ['linux', 'cygwin', 'gnu', 'freebsd', 'gnu/kfreebsd', 'haiku'].contains(host_machine.system()) or host_machine.system().startswith('linux')
Brad Bishop393846f2019-05-20 12:24:11 -040041 pre_args += '-D_GNU_SOURCE'
Brad Bishop6dbb3162019-11-25 09:41:34 -050042 elif host_machine.system() == 'sunos'
43 pre_args += '-D__EXTENSIONS__'