r2572: Auto commit for Debian build
[clsql.git] / clsql-base.asd
index a7b9fae1d08c28c9dedbdd75a177a1d68ca6a914..84d3a66935e76b09160d5574f779e2837bb26cbb 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql-base.asd,v 1.5 2002/09/01 09:00:14 kevin Exp $
+;;;; $Id: clsql-base.asd,v 1.8 2002/09/06 10:56:13 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
                    :device (pathname-device *load-truename*)
                    :directory (pathname-directory *load-truename*)))))
 
-(defconstant +clsql-logical-host+
-  #+common-lisp-controller "cl-library"
-  #-common-lisp-controller "clsql"
-  "Logical hostname for loading system")
-
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql-base)))) 
-   "cl")
 
  ;;; System definitions
 
 (defsystem clsql-base
-  :pathname #.(format nil "~A:clsql-base;" +clsql-logical-host+)
+    :pathname #.(format nil "~A:clsql-base;" 
+      #+common-lisp-controller "cl-library"
+      #-common-lisp-controller "clsql")
   :perform (load-op :after (op clsql-base)
                    (pushnew :clsql-base cl:*features*))
   :components ((:file "cmucl-compat")
@@ -54,3 +48,8 @@
               (:file "db-interface" :depends-on ("conditions"))
               (:file "initialize" :depends-on ("db-interface")))
   )
+
+(defmethod source-file-type  ((c cl-source-file)
+                             (s (eql (find-system 'clsql-base)))) 
+   "cl")
+