Peter Van Eynde wrote: > Indeed the clc version 6.18 does not work with older versions of sbcl. > I've had to change the native-file-kind package. > > However I've also added a Conflict against "sbcl (<< 1:1.0.29.0)". So > why did it want to install with an older version of sbcl?
If for some reason you need to CLC to be compatible with older
versions of SBCL, I use code like below:
(let ((file-kind-fun
(or (find-symbol "NATIVE-FILE-KIND" :sb-impl)
(find-symbol "UNIX-FILE-KIND" :sb-unix))))
(when file-kind-fun
(funcall file-kind-fun path-string)))
--
Kevin Rosenberg
[email protected]
signature.asc
Description: Digital signature
_______________________________________________ pkg-common-lisp-devel mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-common-lisp-devel
