From 997e17eabe8b7611407e8e425364a5a13f31abf2 Mon Sep 17 00:00:00 2001 From: John Kennedy Date: Thu, 5 Oct 2023 20:12:46 +0300 Subject: [PATCH] Enable USE_DEV_IO on FreeBSD/aarch64 --- include/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/meson.build b/include/meson.build index 3e71e4621..64cf0aeee 100644 --- a/include/meson.build +++ b/include/meson.build @@ -379,7 +379,7 @@ xorg_data.set('HAVE_SYS_VT_H', cc.has_header('sys/vt.h') ? '1' : false) xorg_data.set('HAVE_MODESETTING_DRIVER', build_modesetting ? '1' : false) if host_machine.system() == 'freebsd' or host_machine.system() == 'dragonfly' - if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64' + if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64' or host_machine.cpu_family() == 'aarch64' xorg_data.set('USE_DEV_IO', '1') endif elif host_machine.system() == 'netbsd'