diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2025-05-08 13:44:47 +0200 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2025-05-18 12:17:51 +0200 |
commit | 25e57f578d07b21c8abe4bd57076bee0f0129943 (patch) | |
tree | 7ff3614b891349646cd953639dbc3758e4b47f87 | |
parent | textproc/codesearch: update to 1.3.0-rc.1 (diff) |
editors/emacs-devel: 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
See also: ce3b3300759cd00d16095da678e3ea240a4fe944
-rw-r--r-- | editors/emacs-devel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile index 26e9efca785b..ea1c7a151aca 100644 --- a/editors/emacs-devel/Makefile +++ b/editors/emacs-devel/Makefile @@ -103,6 +103,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 |