X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-uffi.asd;h=e6fe6b861c34dc4ad3076ea4af8a854aea80892b;hb=1f175f253dfd592b520f638ae0cefe9ca9e40683;hp=9d5c21e4cd41e7d5ad56479a7f997d5a3115d88e;hpb=31e110c6d17b31e9978b61dcf64c13ba509182eb;p=clsql.git diff --git a/clsql-uffi.asd b/clsql-uffi.asd index 9d5c21e..e6fe6b8 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.4 2002/09/01 09:00:15 kevin Exp $ +;;;; $Id: clsql-uffi.asd,v 1.9 2002/09/18 07:50:01 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -22,14 +22,16 @@ ;;; System definition -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system 'clsql-uffi)))) - "cl") +(defsystem :clsql-uffi + :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)) -(defsystem clsql-uffi - :pathname #.(format nil "~A:clsql-uffi;" +clsql-logical-host+) - :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)) +(defmethod source-file-type ((c cl-source-file) + (s (eql (find-system :clsql-uffi)))) + "cl")