Add initial support for SBCL, currently restricted to SERVE-EVENT.

This commit is contained in:
2012-11-18 02:12:43 +01:00
parent a5585fac6c
commit 57f5619329
3 changed files with 187 additions and 1 deletions

View File

@ -26,6 +26,8 @@
:pathname ""
:components ((:file "package")
(:file "utility" :depends-on ("package"))
#+sbcl
(:file "sbcl-locking" :depends-on ("package"))
#+cmu
(:file "cmu-locking" :depends-on ("package"))
#+lispworks4.1
@ -82,7 +84,9 @@
"server")))
:depends-on ("base"))
(:module "drivers"
:components (#+cmu
:components (#+sbcl
(:file "simple-sbcl")
#+cmu
(:file "simple-cmu")
#+lispworks4.1
(:file "simple-lwl")