From: Kevin M. Rosenberg Date: Fri, 23 Aug 2002 19:29:06 +0000 (+0000) Subject: r2387: *** empty log message *** X-Git-Tag: v1.6.1~325 X-Git-Url: http://git.kpe.io/?a=commitdiff_plain;h=8b9d9cf55526764995756bd9db9ac1eb4c3bbd98;hp=e59d8c7edc1d6b3d3e1f8351c8d9a58bff19030a;p=uffi.git r2387: *** empty log message *** --- diff --git a/uffi.asd b/uffi.asd index 1fc30bc..7e22276 100644 --- a/uffi.asd +++ b/uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: uffi.asd,v 1.4 2002/08/23 19:21:54 kevin Exp $ +;;;; $Id: uffi.asd,v 1.5 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 :cl-user) +(in-package :asdf) ;; For use with non-Common Lisp Controller installations #-common-lisp-controller @@ -31,13 +31,11 @@ :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") -(in-package :asdf) - (defclass uffi-cl-source-file (cl-source-file) ()) (defmethod source-file-type ((c uffi-cl-source-file) (s module)) "cl") @@ -53,8 +51,8 @@ :default-component-class uffi-cl-source-file :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+) :perform (load-op :after (op uffi) (pushnew :uffi cl:*features*)) :components diff --git a/uffi.system b/uffi.system index 38c7fd1..1755fdd 100644 --- a/uffi.system +++ b/uffi.system @@ -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 @@ -31,15 +31,15 @@ :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")