aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Clausecker <fuz@FreeBSD.org>2023-11-20 20:02:51 +0000
committerRobert Clausecker <fuz@FreeBSD.org>2023-11-24 06:12:35 +0000
commitb632464b29fc330113280495ef76d0f825058ae8 (patch)
treeb80ed040faabb7903470ab9313f7139acf151a15
parenta980cd2dffdbc3b4d5f6beadad7f6bdc731aa0c5 (diff)
downloadports-b632464b29fc330113280495ef76d0f825058ae8.tar.gz
ports-b632464b29fc330113280495ef76d0f825058ae8.zip
x11-servers/xorg-server: fix build on armv6/armv7
This reinstates USE_DEV_IO=1 on arm, a patch that was dropped in the switch from autotools to meson. Approved by: portmgr (build fix blanket) MFH: 2023Q4
-rw-r--r--x11-servers/xorg-server/files/patch-include_meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-servers/xorg-server/files/patch-include_meson.build b/x11-servers/xorg-server/files/patch-include_meson.build
index a873f548052d..b716f8efcb94 100644
--- a/x11-servers/xorg-server/files/patch-include_meson.build
+++ b/x11-servers/xorg-server/files/patch-include_meson.build
@@ -5,7 +5,7 @@
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'
++ if host_machine.cpu_family() == 'x86' or host_machine.cpu_family() == 'x86_64' or host_machine.cpu_family() == 'aarch64' or host_machine.cpu_family() == 'arm'
xorg_data.set('USE_DEV_IO', '1')
endif
elif host_machine.system() == 'netbsd'