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>
This commit is contained in:
George Matsumura 2021-04-07 17:28:46 -06:00 committed by Peter Hutterer
parent 199f278a1b
commit 3e4e70db10
1 changed files with 2 additions and 2 deletions

View File

@ -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