X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-base.asd;h=b33abedcf0e3adb84ef9ecc65a886dda02f0c126;hp=66072f31692763ff75b68fe512fefd7252b8c0e8;hb=94a7bd5cfc5413a85312a6363664ae262241c309;hpb=1776004eedb08c52fe909be73a9d34900808e172 diff --git a/clsql-base.asd b/clsql-base.asd index 66072f3..b33abed 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.1 2002/08/18 02:57:50 kevin Exp $ +;;;; $Id: clsql-base.asd,v 1.12 2002/09/20 01:40:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,28 +16,32 @@ ;;;; (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))) +(defsystem clsql-base + :name "cl-sql-base" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL Base Package" + :long-description "cl-sql-base package provides the low-level interface for the database drivers." -;;; 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") + (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"))) - :finally-do - ) + (:file "initialize" :depends-on ("db-interface")))))) + +(defmethod source-file-type ((c cl-source-file) + (s (eql (find-system :clsql-base)))) + "cl") +