mirror of
https://github.com/nix-community/emacs-overlay.git
synced 2025-12-06 02:40:25 -08:00
Merge e9e1d3aa5d into 7af2328c73
This commit is contained in:
commit
c1cf67ac5d
1 changed files with 4 additions and 1 deletions
|
|
@ -30,7 +30,10 @@ let
|
|||
# fixes segfaults that only occur on aarch64-linux (#264)
|
||||
configureFlags = old.configureFlags ++
|
||||
super.lib.optionals (super.stdenv.isLinux && super.stdenv.isAarch64)
|
||||
[ "--enable-check-lisp-object-type" ];
|
||||
[ "--enable-check-lisp-object-type" ] ++
|
||||
# Disable C23 on macOS due to static_assert conflicts
|
||||
super.lib.optionals super.stdenv.isDarwin
|
||||
[ "ac_cv_prog_cc_c23=no" ];
|
||||
|
||||
postPatch = old.postPatch + ''
|
||||
substituteInPlace lisp/loadup.el \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue