git: b632464b29fc - main - x11-servers/xorg-server: fix build on armv6/armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 24 Nov 2023 06:14:59 UTC
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=b632464b29fc330113280495ef76d0f825058ae8 commit b632464b29fc330113280495ef76d0f825058ae8 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2023-11-20 20:02:51 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2023-11-24 06:12:35 +0000 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 --- x11-servers/xorg-server/files/patch-include_meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'