X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql-postgresql.asd;h=5c73bba7f2bc62886baaf0d6ff805d5effff22fa;hp=b2e33c9ac34f1a88adc1e4e7456608b2e6d89848;hb=da9282a5c0ce927c613f1706f1c51796c75e16e4;hpb=bada52b7a8fd2cc484dee33cccd64ca09a52ec3d diff --git a/clsql-postgresql.asd b/clsql-postgresql.asd index b2e33c9..5c73bba 100644 --- a/clsql-postgresql.asd +++ b/clsql-postgresql.asd @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software @@ -19,7 +17,8 @@ (defpackage #:clsql-postgresql-system (:use #:asdf #:cl)) (in-package #:clsql-postgresql-system) -#+(or allegro lispworks cmu sbcl openmcl mcl scl) +#+(and allegro macosx) (push "so" excl::*load-foreign-types*) + (defsystem clsql-postgresql :name "cl-sql-postgresql" :author "Kevin M. Rosenberg " @@ -28,12 +27,11 @@ :description "Common Lisp PostgreSQL API Driver" :long-description "cl-sql-postgresql package provides a the database driver for the PostgreSQL API." + :depends-on (clsql clsql-uffi) :components ((:module :db-postgresql :components ((:file "postgresql-package") (:file "postgresql-loader" :depends-on ("postgresql-package")) (:file "postgresql-api" :depends-on ("postgresql-loader")) - (:file "postgresql-sql" :depends-on ("postgresql-api")) - (:file "postgresql-usql" :depends-on ("postgresql-sql"))))) - :depends-on (:uffi :clsql-base :clsql-uffi)) + (:file "postgresql-sql" :depends-on ("postgresql-api"))))))