From 6cd78c2ec5414f6fe07002883d11d2a7802d7153 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 25 Sep 2002 12:44:59 +0000 Subject: [PATCH] r2842: *** empty log message *** --- debian/changelog | 10 ++++++++-- debian/control | 2 +- debian/postinst | 4 ++-- uffi.asd | 7 +++++-- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7f657b6..ff782dc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,12 @@ -cl-uffi (0.8.1-2) unstable; urgency=low +cl-uffi (0.8.2-2) unstable; urgency=low - * Add call to common-lisp-only-compatible + * Add pathname to clc-register-impl invocation + + -- Kevin M. Rosenberg Wed, 25 Sep 2002 06:38:44 -0600 + +cl-uffi (0.8.2-1) unstable; urgency=low + + * Add conditionals to .asd file to control clc autobuilding -- Kevin M. Rosenberg Sun, 22 Sep 2002 21:00:57 -0600 diff --git a/debian/control b/debian/control index 0d61d5e..5b64675 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.5.7.0 Package: cl-uffi Architecture: all -Depends: common-lisp-controller (>= 3.27) +Depends: common-lisp-controller Description: Universal Foreign Function Library for Common Lisp UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL. diff --git a/debian/postinst b/debian/postinst index 7c638d6..b7d5c67 100644 --- a/debian/postinst +++ b/debian/postinst @@ -28,8 +28,8 @@ LISP_PKG=uffi case "$1" in configure) - clc-only-compatible $LISP_PKG allegro cmucl lispworks openmcl - register-common-lisp-source $LISP_PKG + #clc-only-compatible $LISP_PKG allegro cmucl lispworks openmcl + /usr/sbin/register-common-lisp-source $LISP_PKG ;; abort-upgrade|abort-remove|abort-deconfigure) diff --git a/uffi.asd b/uffi.asd index 58d0289..a373571 100644 --- a/uffi.asd +++ b/uffi.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: uffi.asd,v 1.14 2002/09/20 05:38:01 kevin Exp $ +;;;; $Id: uffi.asd,v 1.15 2002/09/25 12:44:59 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,6 +19,7 @@ (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (in-package :asdf) +#+(or allegro lispworks cmu openmcl mcl) (defsystem uffi :name "cl-uffi" :author "Kevin M. Rosenberg " @@ -60,9 +61,11 @@ )) -(defmethod source-file-type ((c cl-source-file) (s (eql (find-system :uffi)))) +#+(or allegro lispworks cmu openmcl mcl) +(defmethod source-file-type ((c cl-source-file) (s (eql (find-system :uffi)))) "cl") +#+(or allegro lispworks cmu openmcl mcl) (when (ignore-errors (find-class 'load-compiled-op)) (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :uffi)))) (pushnew :uffi cl:*features*))) -- 2.34.1