pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/editors/emacs29
Module Name: pkgsrc
Committed By: tnn
Date: Tue Aug 15 10:52:08 UTC 2023
Modified Files:
pkgsrc/editors/emacs29: options.mk
Log Message:
emacs29: disable gcc13-libjit option on Darwin-*-aarch64
No support for Darwin's Aarch64 ABI in any GCC major release yet.
It's on it's way but probably not before GCC 15.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/editors/emacs29/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/editors/emacs29/options.mk
diff -u pkgsrc/editors/emacs29/options.mk:1.3 pkgsrc/editors/emacs29/options.mk:1.4
--- pkgsrc/editors/emacs29/options.mk:1.3 Mon Aug 14 05:13:31 2023
+++ pkgsrc/editors/emacs29/options.mk Tue Aug 15 10:52:08 2023
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.3 2023/08/14 05:13:31 wiz Exp $
+# $NetBSD: options.mk,v 1.4 2023/08/15 10:52:08 tnn Exp $
### Set options
PKG_OPTIONS_VAR= PKG_OPTIONS.emacs
@@ -21,7 +21,11 @@ PKG_OPTIONS_GROUP.toolkit= gtk gtk2 gtk
# imagemagick is disabled because of stability/security
# svg is omitted because it is rarely needed and heavyweight due to the rust dependency
# xaw3d is omitted because it is only valid with xaw
-PKG_SUGGESTED_OPTIONS= dbus libgccjit gnutls gtk3 jansson libotf libwebp tree-sitter xml x11
+PKG_SUGGESTED_OPTIONS= dbus gnutls gtk3 jansson libotf libwebp tree-sitter xml x11
+
+.if empty(MACHINE_PLATFORM:MDarwin-*-aarch64)
+PKG_SUGGESTED_OPTIONS+= libgccjit
+.endif
.include "../../mk/bsd.options.mk"
Home |
Main Index |
Thread Index |
Old Index