X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=set-logical.cl;h=4990e7dd5d6f58fccca36b5533f27f56a864b2a5;hb=0d52b379e86d878b9c0c7806701f939cfd661901;hp=228023a5ae62e8d7095caf3b344ffa8d9a5099c8;hpb=63b0648b562bc5a8db5ef013804b1ff4e5c52314;p=uffi.git diff --git a/set-logical.cl b/set-logical.cl index 228023a..4990e7d 100644 --- a/set-logical.cl +++ b/set-logical.cl @@ -1,4 +1,4 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; @@ -7,24 +7,11 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; Copyright (c) 2002 Kevin M. Rosenberg +;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; -;;;; $Id: set-logical.cl,v 1.1 2002/03/11 18:00:57 kevin Exp $ -;;;; -;;;; This file is part of UFFI. -;;;; -;;;; UFFI is free software; you can redistribute it and/or modify -;;;; it under the terms of the GNU General Public License (version 2) as -;;;; published by the Free Software Foundation. -;;;; -;;;; UFFI is distributed in the hope that it will be useful, -;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;;;; GNU General Public License for more details. -;;;; -;;;; You should have received a copy of the GNU General Public License -;;;; along with UFFI; if not, write to the Free Software Foundation, Inc., -;;;; 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +;;;; UFFI users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* @@ -48,9 +35,10 @@ #+clisp "clisp" #+cmu "cmucl" #+sbcl "sbcl" - #+corman "corman" + #+cormanlisp "corman" #+mcl "mcl" - #-(or allegro lispworks clisp cmu sbcl corman mcl) "unknown") + #+openmcl "openmcl" + #-(or allegro lispworks clisp cmu sbcl cormanlisp mcl openmcl) "unknown") (defun set-logical-host-for-pathname (host base-pathname) (setf (logical-pathname-translations host) @@ -73,3 +61,5 @@ :directory '(:relative :wild-inferiors)) base-pathname)))) ) + +(export 'set-logical-host-for-pathname)