I need a version 3 ASDF. I am on GNU CLISP 2.49, Emacs 23.5.1, Ubuntu 16.04, SBCL 1.3.1 Debian.
The current problem is
CL-USER> (asdf:asdf-version) => "3.3.2"
but
CL-USER> (ql:quickload :quickproject)
=> Evaluation aborted on
#<ASDF-2.26:LOAD-SYSTEM-DEFINITION-ERROR #x21C57D9E>
My question is; were I to uninstall, purge and then reinstall both Clisp and Emacs, would this provide me with a version 3 ASDF?
I got here by copying a new asdf.lisp and referring to it in ~/.clisprc.lisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
(load (compile-file #P"~/.quicklisp/asdf.lisp"))
Perhaps removing reference to this copied asdf.lisp will get me back to version 2 of ASDF.
Re: This earlier Stack Overflow reply to make from an ASDF Git pull refers to ASDF build/install tutorial which sure seems complicated.