mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
I've also enabled asdf, and this update includes fixes for build on arm64. Thus, I've hardcode MacPorts XDG_DATA_DIRS and add myself as co-maintainer. Threads? It is unstable but let keep it as variant. And seems that `dynamic-ffi` works fine with last version of libffcall. See: https://github.com/macports/macports-ports/pull/16496 Closes: https://trac.macports.org/ticket/27837
12 lines
661 B
Diff
12 lines
661 B
Diff
--- modules/asdf/asdf.lisp
|
|
+++ modules/asdf/asdf.lisp
|
|
@@ -7186,7 +7186,7 @@ also \"Configuration DSL\"\) in the ASDF manual."
|
|
(or (remove nil (getenv-absolute-directories "XDG_DATA_DIRS"))
|
|
(os-cond
|
|
((os-windows-p) (mapcar 'get-folder-path '(:appdata :common-appdata)))
|
|
- (t (mapcar 'parse-unix-namestring '("/usr/local/share/" "/usr/share/")))))))
|
|
+ (t (mapcar 'parse-unix-namestring '("@@PREFIX@@/share/" "/usr/local/share/" "/usr/share/")))))))
|
|
|
|
(defun xdg-config-dirs (&rest more)
|
|
"The preference-ordered set of additional base paths to search for configuration files.
|