r2387: *** empty log message ***
[uffi.git] / uffi.system
index 38c7fd14a78978b8ab44d94ee91deaf8754177bc..1755fdd8e4db3581afc64ed92ae0fd472ac2c1b6 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: uffi.system,v 1.17 2002/08/23 19:21:54 kevin Exp $
+;;;; $Id: uffi.system,v 1.18 2002/08/23 19:29:06 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -17,7 +17,7 @@
 ;;;; *************************************************************************
 
 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :make)
+(in-package :asdf)
 
 ;; For use with non-Common Lisp Controller installations
 #-common-lisp-controller
                    :device (pathname-device *load-truename*)
                    :directory (pathname-directory *load-truename*)))))
 
-(defconstant +clsql-logical-host+
+(defconstant +uffi-logical-host+
   #+common-lisp-controller "cl-library"
-  #-common-lisp-controller "clsql"
+  #-common-lisp-controller "uffi"
   "Logical hostname for loading system")
 
 (make:defsystem :uffi
     :source-pathname 
-    #-mcl #.(format nil "~A:uffi;" cl-user:+clsql-logical-host+)
-    #+mcl  #.(format nil "~A:uffi;mcl;" cl-user:+clsql-logical-host+)
+    #-mcl #.(format nil "~A:uffi;" +uffi-logical-host+)
+    #+mcl  #.(format nil "~A:uffi;mcl;" +uffi-logical-host+)
     :source-extension "cl"
     :components 
     ((:file "package")