;;; -*- Lisp -*- (defpackage #:sb-aclrepl-system (:use #:asdf #:cl)) (in-package #:sb-aclrepl-system) (defsystem sb-aclrepl :version "0.5" :components ((:file "repl") (:file "inspect" :depends-on ("repl")))) ;; FIXME - test for successful compilation of sb-aclrepl (defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl)))) (and (boundp 'sb-impl::*inspect-fun*) (boundp 'sb-int:*repl-prompt-fun*) (boundp 'sb-int:*repl-read-form-fun*)))