ASDF システムで特定のバージョンのライブラリに依存する方法を知りたいですか?
(asdf:defsystem #:my-system
:serial t
:description "Describe my-system here"
:author "My Name <my.name@example.com>"
:license "Specify license here"
:depends-on (#:hunchentoot
#:cl-who)
:components ((:file "package")
(:file "dispatch")))
上記のシステムは、hunchentoot と cl-who に依存しています。私の理解では、両方のライブラリの最新バージョンが使用されます。代わりに cl-who 1.0.5 (例) を使用するように指定するにはどうすればよいですか?
前もって感謝します。