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:16:16 +0000
commitca2712d6217eef1540599394f705d99c29539a77 (patch)
tree7ceaed5e3333e9a1b52ab61e0cbe0a5723551d51
parent690ea2e84f43fa7f8c055557c6f00238c7e4c2a8 (diff)
downloadports-ca2712d6217eef1540599394f705d99c29539a77.tar.gz
ports-ca2712d6217eef1540599394f705d99c29539a77.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 (cherry picked from commit b632464b29fc330113280495ef76d0f825058ae8)
-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'