diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2025-04-25 10:41:15 +0200 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2025-05-01 12:02:59 +0200 |
commit | ce3b3300759cd00d16095da678e3ea240a4fe944 (patch) | |
tree | 0f78f5294334c13c7cb340d72602190965dc12b9 | |
parent | graphics/mesa-libs: fix build on armv7 with LLVM 19 (diff) |
editors/emacs: fix build on armv7
gccjit crashes during configure if NATIVECOMP is enabled on armv7.
Exclude the option there to fix the build.
Approved by: portmgr (build fix blanket)
MFH: 2025Q2
-rw-r--r-- | editors/emacs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 0bff653f7f7e..266e3b2cd886 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -129,6 +129,7 @@ OPTIONS_EXCLUDE+= ALSA CAIRO DBUS GFILE GIF GSETTINGS GTK2 GTK3 \ PGTK PNG SCROLLBARS SVG TIFF WEBP XAW XAW3D XFT \ XIM XPM XWIDGETS .endif +OPTIONS_EXCLUDE_armv7= NATIVECOMP OPTIONS_SUB= YES ACL_DESC= Access control list support |