X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=clsql-base.asd;h=51fbfe8bda5129dbf3470b02a029a2854a33d027;hb=bada52b7a8fd2cc484dee33cccd64ca09a52ec3d;hp=9ac0fde7b8a46e156f1b131a7793318b87b78cfc;hpb=60c0b757093a0dd1d8f4123c08bce14a7bc49e07;p=clsql.git diff --git a/clsql-base.asd b/clsql-base.asd index 9ac0fde..51fbfe8 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.14 2002/09/25 12:44:59 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,20 +16,18 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(in-package :asdf) +(defpackage #:clsql-base-system (:use #:asdf #:cl)) +(in-package #:clsql-base-system) -#+(or allegro lispworks cmu openmcl mcl) -(defsystem :clsql-base +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem clsql-base :name "cl-sql-base" - :author "Kevin M. Rosenberg " - :version "0.9.2" + :author "Kevin Rosenberg " :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." - :perform (load-op :after (op clsql-base) - (pushnew :clsql-base cl:*features*)) :components ((:module :base :components @@ -41,12 +39,3 @@ (:file "db-interface" :depends-on ("conditions")) (:file "initialize" :depends-on ("db-interface")))))) -#+(or allegro lispworks cmu openmcl mcl) -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system :clsql-base)))) - "cl") - -#+(or allegro lispworks cmu openmcl mcl) -(when (ignore-errors (find-class 'load-compiled-op)) - (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql-base)))) - (pushnew :clsql-base cl:*features*)))