X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-mysql.asd;h=0fa706ec256bfe824cf64cb690a0ac2ade2e0a24;hb=c26576fadaa8c5e5c5a2406de108529c308bd9b4;hp=9e17055ffeb2bcc5fa8eee15e4e28f7f2c249d31;hpb=ff1f136e9e966a5dace14a1af628cab14f898808;p=clsql.git diff --git a/clsql-mysql.asd b/clsql-mysql.asd index 9e17055..0fa706e 100644 --- a/clsql-mysql.asd +++ b/clsql-mysql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-mysql.asd,v 1.5 2002/09/06 10:56:13 kevin Exp $ +;;;; $Id: clsql-mysql.asd,v 1.13 2002/10/16 11:51:04 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,25 +16,26 @@ ;;;; (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) ;;; System definition -(defsystem clsql-mysql - :pathname #.(format nil "~A:clsql-mysql;" - #+common-lisp-controller "cl-library" - #-common-lisp-controller "clsql") - :components ((:file "mysql-package") - (:file "mysql-loader" :depends-on ("mysql-package")) - (:file "mysql-api" :depends-on ("mysql-loader")) - (:file "mysql-sql" :depends-on ("mysql-api")) - (:file "mysql-usql" :depends-on ("mysql-sql"))) - :depends-on (:uffi :clsql-base :clsql-uffi)) - - -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system 'clsql-mysql)))) - "cl") +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem :clsql-mysql + :name "cl-sql-mysql" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common Lisp SQL MySQL Driver" + :long-description "cl-sql-mysql package provides a database driver to the MySQL database system." + :components + ((:module :db-mysql + :components + ((:file "mysql-package") + (:file "mysql-loader" :depends-on ("mysql-package")) + (:file "mysql-api" :depends-on ("mysql-loader")) + (:file "mysql-sql" :depends-on ("mysql-api")) + (:file "mysql-usql" :depends-on ("mysql-sql"))))) + :depends-on (:uffi :clsql-base :clsql-uffi))