summaryrefslogtreecommitdiff
path: root/clim-lisp.asd
blob: 90c0e424e8b32c9ccb03ee97e24a206b8244a67a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defsystem #:clim-lisp
  :serial t
  :depends-on (#:alexandria #:trivial-gray-streams #:log4cl)
  :components (;; First possible patches
               (:file "patch")
               (:module "Lisp-Dep"
                        :components
                        (#+(or cmu scl excl sbcl openmcl lispworks clisp ecl)
                           (:file   #+cmu       "fix-cmu"
                                    #+scl       "fix-scl"
                                    #+excl      "fix-acl"
                                    #+sbcl      "fix-sbcl"
                                    #+openmcl   "fix-openmcl"
                                    #+lispworks "fix-lispworks"
                                    #+clisp     "fix-clisp"
                                    #+ecl       "fix-ecl")))
               (:file "package")))