X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-base.asd;h=c45a806636a77db87437663feee2e3f31df543e7;hp=b39363e5ac08ea739de117bc8e8356cf5edcbd86;hb=31d1a78ee915ae4db7c042b7e5cb1ab7b5a73448;hpb=8656ec59dfa754f759f8f946efe534f0b6734d95 diff --git a/clsql-base.asd b/clsql-base.asd index b39363e..c45a806 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.2 2002/08/18 04:08:56 kevin Exp $ +;;;; $Id: clsql-base.asd,v 1.10 2002/09/17 17:16:43 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,27 +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))) - -;;; 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") +