X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-uffi.asd;h=21ef79a4ac08ee3b220e5550cedafe4a680ae1da;hb=c26576fadaa8c5e5c5a2406de108529c308bd9b4;hp=2c010e844f919f9451115c61a7cf495e56591a7e;hpb=7bc4dfb23f87f18f34b32db380d4aec42e535a61;p=clsql.git diff --git a/clsql-uffi.asd b/clsql-uffi.asd index 2c010e8..21ef79a 100644 --- a/clsql-uffi.asd +++ b/clsql-uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-uffi.asd,v 1.2 2002/08/18 04:39:59 kevin Exp $ +;;;; $Id: clsql-uffi.asd,v 1.14 2002/10/16 11:51:04 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -22,11 +22,20 @@ ;;; System definition -(defsystem clsql-uffi - :default-component-class clsql-cl-source-file - :pathname "cl-library:clsql-uffi;" - :components ((:file "clsql-uffi-package") - (:file "clsql-uffi-loader" :depends-on ("clsql-uffi-package")) - (:file "clsql-uffi" :depends-on ("clsql-uffi-loader"))) - :depends-on (:uffi)) +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem :clsql-uffi + :name "cl-sql-base" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :licence "Lessor Lisp General Public License" + :description "Common UFFI Helper functions for Common Lisp SQL Interface Library" + :long-description "cl-sql-uffi package provides common helper functions using the UFFI for the CLSQL package." + :components + ((:module :uffi + :components + ((:file "clsql-uffi-package") + (:file "clsql-uffi-loader" :depends-on ("clsql-uffi-package")) + (:file "clsql-uffi" :depends-on ("clsql-uffi-loader"))))) + :depends-on (:uffi :clsql-base))