r7061: initial property settings
[clsql.git] / clsql-oracle.asd
index e8b9f98ee9875d9633cb265ef0aaeab5ccd742b5..628fd61bb123d850dc8f3aa80e89432aa9eb09d4 100644 (file)
@@ -1,17 +1,17 @@
 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; This is copyrighted software.  See interfaces/oracle/* files for terms.
 ;;;; 
-;;;; $Id: clsql-oracle.asd,v 1.9 2002/09/25 12:44:59 kevin Exp $
+;;;; $Id$
 
-(in-package :asdf)
+(defpackage #:clsql-oracle-system (:use #:asdf #:cl))
+(in-package #:clsql-oracle-system)
 
 ;;; System definition
 
-#+(or allegro lispworks cmu openmcl mcl)
-(defsystem :clsql-oracle
+#+(or allegro lispworks cmu sbcl openmcl mcl scl)
+(defsystem clsql-oracle
   :name "cl-sql-oracle"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
-  :version "0.9.2"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "Lessor Lisp General Public License"
   :description "Common Lisp SQL Oracle Driver"
               (:file "oracle-sql" :depends-on ("oracle" "alien-resources"))
               (:file "oracle-objects" :depends-on ("oracle-sql")))))
     :depends-on (:clsql-base))
-
-#+(or allegro lispworks cmu openmcl mcl)
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system :clsql-oracle)))) 
-   "cl")
-
-
-