X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-postgresql.asd;h=33f485d4e3de1d85cd8762b2bae1fec8fe8431db;hb=f834d7038bfd1c34df52bd93aba061f2e83da65d;hp=fb61b84d30b2e3b517b307c082790c3b5c666954;hpb=60c0b757093a0dd1d8f4123c08bce14a7bc49e07;p=clsql.git diff --git a/clsql-postgresql.asd b/clsql-postgresql.asd index fb61b84..33f485d 100644 --- a/clsql-postgresql.asd +++ b/clsql-postgresql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: clsql-postgresql.asd,v 1.10 2002/09/25 12:44:59 kevin Exp $ +;;;; $Id: clsql-postgresql.asd,v 1.14 2003/05/07 02:45:08 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,14 +16,13 @@ ;;;; (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) +(defpackage #:clsql-postgresql-system (:use #:asdf #:cl)) +(in-package #:clsql-postgresql-system) -#+(or allegro lispworks cmu openmcl mcl) -(defsystem :clsql-postgresql +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem clsql-postgresql :name "cl-sql-postgresql" :author "Kevin M. Rosenberg " - :version "0.9.2" :maintainer "Kevin M. Rosenberg " :licence "Lessor Lisp General Public License" :description "Common Lisp PostgreSQL API Driver" @@ -38,8 +37,3 @@ (:file "postgresql-sql" :depends-on ("postgresql-api")) (:file "postgresql-usql" :depends-on ("postgresql-sql"))))) :depends-on (:uffi :clsql-base :clsql-uffi)) - -#+(or allegro lispworks cmu openmcl mcl) -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system :clsql-postgresql)))) - "cl")