Skip to content

Commit

Permalink
Add ABCL MOP package.
Browse files Browse the repository at this point in the history
  • Loading branch information
alessiostalla authored and Ramarren committed Feb 9, 2010
1 parent 1e478c4 commit cced2e5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cells.asd
@@ -1,6 +1,6 @@
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-


#+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl ecl) #+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl ecl abcl)
(progn (progn
(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))


Expand Down
3 changes: 2 additions & 1 deletion defpackage.lisp
Expand Up @@ -34,8 +34,9 @@
#+sbcl #:sb-mop #+sbcl #:sb-mop
#+(or ccl mcl) #:ccl #+(or ccl mcl) #:ccl
#+ecl #:clos #+ecl #:clos
#+abcl #:mop


#-(or allegro clisp cmu cormanlisp lispworks mcl ccl sbcl ecl) #-(or allegro clisp cmu cormanlisp lispworks mcl ccl sbcl ecl abcl)
#.(cerror "Provide a package name." #.(cerror "Provide a package name."
"Don't know how to find the MOP package for this Lisp.") "Don't know how to find the MOP package for this Lisp.")


Expand Down
2 changes: 1 addition & 1 deletion utils-kt.asd
Expand Up @@ -6,7 +6,7 @@
;;;(operate 'load-op :asdf-aclproj) ;;;(operate 'load-op :asdf-aclproj)
;;;(use-package :asdf-aclproj) ;;;(use-package :asdf-aclproj)


#+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl ecl) #+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl ecl abcl)


(asdf:defsystem :utils-kt (asdf:defsystem :utils-kt
:name "utils-kt" :name "utils-kt"
Expand Down
1 change: 1 addition & 0 deletions utils-kt/defpackage.lisp
Expand Up @@ -40,6 +40,7 @@ See the Lisp Lesser GNU Public License for more details.
#+cmu #:mop #+cmu #:mop
#+sbcl #:sb-mop #+sbcl #:sb-mop
#+openmcl-partial-mop #:openmcl-mop #+openmcl-partial-mop #:openmcl-mop
#+abcl #:mop
#+(and mcl (not openmcl-partial-mop)) #:ccl) #+(and mcl (not openmcl-partial-mop)) #:ccl)
(:export (:export
#:export! #:export!
Expand Down

0 comments on commit cced2e5

Please sign in to comment.