Files
macports-ports/lang/clisp/files/patch-macports-xdg-data-dir.diff
Kirill A. KorinskyandHerby Gillot e0824b4d62 clisp: update to 2.50.0-20230212
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
2023-05-31 10:18:34 -04:00

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.