X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=uffi.asd;h=1be5c3453da10af8993448a9fa0f74f62182640b;hb=0eaed82d93e9d2afbdcbdb8b49b0fc2386f86963;hp=edc52e050723713e2278b2198080a6e43bc2925a;hpb=39af1ecd34f7cefc376c62a005939f849f135629;p=uffi.git diff --git a/uffi.asd b/uffi.asd index edc52e0..1be5c34 100644 --- a/uffi.asd +++ b/uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: uffi.asd,v 1.9 2002/09/06 11:01:53 kevin Exp $ +;;;; $Id: uffi.asd,v 1.10 2002/09/16 17:57:43 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,47 +19,45 @@ (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (in-package :asdf) -;; For use with non-Common Lisp Controller installations -#-common-lisp-controller -(let ((path (make-pathname :name "set-logical" :type "cl" - :defaults *load-truename*))) - (when (probe-file path) - (load path) - (set-logical-host-for-pathname - "uffi" - (make-pathname :host (pathname-host *load-truename*) - :device (pathname-device *load-truename*) - :directory (pathname-directory *load-truename*))))) - -(eval-when (:compile-toplevel :load-toplevel :execute) - (defconstant +uffi-logical-host+ - #+common-lisp-controller "cl-library" - #-common-lisp-controller "uffi" - "Logical hostname for loading system")) - (defsystem uffi :name "cl-uffi" :author "Kevin M. Rosenberg