r2842: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 25 Sep 2002 12:44:59 +0000 (12:44 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 25 Sep 2002 12:44:59 +0000 (12:44 +0000)
debian/changelog
debian/control
debian/postinst
uffi.asd

index 7f657b66940697c7ecacf7d92b21662d2a7ce027..ff782dc4b5facfa4d1617fd5c444f2837e2ce409 100644 (file)
@@ -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 <kmr@debian.org>  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 <kmr@debian.org>  Sun, 22 Sep 2002 21:00:57 -0600
 
index 0d61d5e02899a72c6000552468391e79e0ab30b8..5b64675f89ce7c21e3c15e2958c5b77084f00813 100644 (file)
@@ -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.
index 7c638d6f5547f4f42b4b80f4aee1d8c9541f25ff..b7d5c678acbc5e92b2a0896e6d1d35d86aa6b909 100644 (file)
@@ -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)
index 58d028981bb8bf34f11675146d69df28d62a186c..a3735710466c30ef469b2a66e011a0af8eaf9a03 100644 (file)
--- 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 <kmr@debian.org>"
      ))
 
 
-(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*)))