Skip to content
Snippets Groups Projects
asdf.lisp 75.8 KiB
Newer Older
  (pushnew 'module-provide-asdf sb-ext:*module-provider-functions*)
  (pushnew 'contrib-sysdef-search *system-definition-search-functions*))
(if *asdf-revision*
    (asdf-message ";; ASDF, revision ~a" *asdf-revision*)
    (asdf-message ";; ASDF, revision unknown; possibly a development version"))



#+(or)
;;?? ignore -- so how will ABL get "installed"
;; should be unnecessary with newer versions of ASDF
;; load customizations
(eval-when (:load-toplevel :execute)
  (let* ((*package* (find-package :common-lisp)))
    (load
     (merge-pathnames
      (make-pathname :name "asdf-binary-locations"
		     :type "lisp"
		     :directory '(:relative ".asdf"))
      (truename (user-homedir-pathname)))
     :if-does-not-exist nil)))