Skip to content

Commit

Permalink
x11-servers/xorg-server: fix build on armv6/armv7
Browse files Browse the repository at this point in the history
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
  • Loading branch information
clausecker committed Nov 24, 2023
1 parent a980cd2 commit b632464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x11-servers/xorg-server/files/patch-include_meson.build
Expand Up @@ -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'

0 comments on commit b632464

Please sign in to comment.