git: aaef96606739 - 2023Q4 - graphics/lux: unbreak on armv7

From: Robert Clausecker <fuz_at_FreeBSD.org>
Date: Fri, 03 Nov 2023 21:24:40 UTC
The branch 2023Q4 has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=aaef966067395755338246f68386aa44ac8acf82

commit aaef966067395755338246f68386aa44ac8acf82
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2023-11-03 07:50:10 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2023-11-03 21:24:20 +0000

    graphics/lux: unbreak on armv7
    
    An upcoming patch will fix the misconfiguration that restricts the
    address space for armv7 processes on arm64 to ~2GB instead of the ~3.5GB
    it should have been.  With that patch applied, the port builds fine.
    As a temporary workaround, the following sysctls can be set to effect
    the same change (though affecting arm64 processes too):
    
        kern.maxssiz=67108864
        kern.maxdsiz=536870912
    
    armv6 stays broken as we cannot run armv6 processes on arm64 (see
    PR #256132).
    
    PR:             274705
    MFH:            2023Q4
    See also:       https://reviews.freebsd.org/D42451
    
    (cherry picked from commit e0b169f1d0061a31fccb6e24253011db40c5fdd7)
---
 graphics/lux/Makefile | 1 -
 1 file changed, 1 deletion(-)

diff --git a/graphics/lux/Makefile b/graphics/lux/Makefile
index 29232a6a915e..550cf2bcf052 100644
--- a/graphics/lux/Makefile
+++ b/graphics/lux/Makefile
@@ -13,7 +13,6 @@ LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BROKEN_armv6=	address space exhaustion in compiler
-BROKEN_armv7=	address space exhaustion in compiler
 
 LIB_DEPENDS=	libhwy.so:devel/highway \
 		libsfml-window.so:devel/sfml \