565f3e9119c90cef19e47232f6dc62ef71f85f7c
[sbcl.git] / sb-aclrepl.asd
1 ;;; -*-  Lisp -*-
2
3 (defpackage #:sb-aclrepl-system (:use #:asdf #:cl))
4 (in-package #:sb-aclrepl-system)
5
6 (defsystem sb-aclrepl
7     :version "0.5"
8     :components ((:file "repl")
9                  (:file "inspect" :depends-on ("repl"))))
10
11
12 ;; FIXME - test for successful compilation of sb-aclrepl
13 (defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl))))
14   (and (boundp 'sb-impl::*inspect-fun*)
15        (boundp 'sb-int:*repl-prompt-fun*)
16        (boundp 'sb-int:*repl-read-form-fun*)))
17