;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: uffi.asd ;;;; Purpose: ASDF system definition file for UFFI package ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; ;;;; $Id: uffi.asd,v 1.6 2002/08/26 11:39:53 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; 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. ;;;; ************************************************************************* (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*))))) (defconstant +uffi-logical-host+ #+common-lisp-controller "cl-library" #-common-lisp-controller "uffi" "Logical hostname for loading system") (defclass uffi-cl-source-file (cl-source-file) ()) (defmethod source-file-type ((c uffi-cl-source-file) (s module)) "cl") (defsystem uffi :name "cl-uffi" :author "Kevin M. Rosenberg