X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-base.asd;h=48c68a23b9259c8c3e170ff27a89609be6d1bb13;hb=a4cc7c882966b6ffa58d78fd4a93f0cf6b73426b;hp=f17a1690a533636dde75b617861206b3823dd013;hpb=7bc4dfb23f87f18f34b32db380d4aec42e535a61;p=clsql.git diff --git a/clsql-base.asd b/clsql-base.asd index f17a169..48c68a2 100644 --- a/clsql-base.asd +++ b/clsql-base.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql-base.asd,v 1.3 2002/08/18 04:39:59 kevin Exp $ +;;;; $Id: clsql-base.asd,v 1.11 2002/09/18 07:50:01 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,32 +16,23 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (in-package :asdf) -;; For use with non-Debian installations -(let ((helper-pathname (make-pathname :name "set-cl-library" :type "cl" - :defaults *load-truename*))) - (when (probe-file helper-pathname) - (load helper-pathname))) - -(unless (ignore-errors (find-class 'clsql-cl-source-file)) - (defclass clsql-cl-source-file (cl-source-file) ()) - (defmethod source-file-type ((c clsql-cl-source-file) (s module)) - "cl")) - - ;;; System definitions - (defsystem clsql-base - :default-component-class clsql-cl-source-file - :pathname "cl-library:clsql-base;" - :perform (load-op :after (op clsql-base) - (pushnew :clsql cl:*features*)) - :components ((:file "cmucl-compat") + :perform (load-op :after (op clsql-base) + (pushnew :clsql-base cl:*features*)) + :components + ((:module :base + :components + ((:file "cmucl-compat") (:file "package") (:file "utils" :depends-on ("package")) (:file "classes" :depends-on ("package")) (:file "conditions" :depends-on ("classes")) (:file "db-interface" :depends-on ("conditions")) - (:file "initialize" :depends-on ("db-interface"))) - ) + (:file "initialize" :depends-on ("db-interface")))))) + +(defmethod source-file-type ((c cl-source-file) + (s (eql (find-system :clsql-base)))) + "cl") +