summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Matsumura <gmmatsumura01@bvsd.org>2021-04-07 17:28:46 -0600
committerPeter Hutterer <peter.hutterer@who-t.net>2021-04-08 02:23:21 +0000
commit3e4e70db10a4b2d531ccd649c18317ea2a49d256 (patch)
tree70f762390a7499b762b4ed78aee0c766b62923e1 /include
parent199f278a1b7570b1cb6e24b8bedb4d721b3c9938 (diff)
meson: Fix DragonFly BSD identifier in meson build files
This changes the operating system identifier tested against host_machine.system() in meson build files from "dragonflybsd" to the officially stable "dragonfly". Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org>
Diffstat (limited to 'include')
-rw-r--r--include/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/meson.build b/include/meson.build
index 270d2f397..a58baea8e 100644
--- a/include/meson.build
+++ b/include/meson.build
@@ -268,7 +268,7 @@ supports_syscons = false
supports_wscons = false
csrg_based = false
-if host_machine.system() == 'freebsd' or host_machine.system() == 'dragonflybsd'
+if host_machine.system() == 'freebsd' or host_machine.system() == 'dragonfly'
supports_pccons = true
supports_pcvt = true
supports_syscons = true
@@ -366,7 +366,7 @@ xorg_data.set('HAVE_STROPTS_H', cc.has_header('stropts.h'))
xorg_data.set('HAVE_SYS_KD_H', cc.has_header('sys/kd.h'))
xorg_data.set('HAVE_SYS_VT_H', cc.has_header('sys/vt.h'))
-if host_machine.system() == 'freebsd' or host_machine.system() == 'dragonflybsd'
+if host_machine.system() == 'freebsd' or host_machine.system() == 'dragonfly'
if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64'
xorg_data.set('USE_DEV_IO', true)
endif