in sbcl 1.0.29 unix-file-kind is gone and has to be replaced by native-file-kind.
Possibly as follows, but I guess we should continue to support older sbcl's, too. google yields a possible solution within the stump project:http://www.mail-archive.com/[email protected]/msg01554.html Martin 639c639 < #+:sbcl (case (sb-unix::unix-file-kind filename) --- > #+:sbcl (case (sb-impl::native-file-kind filename) 687c687 < #+:sbcl (if (sb-unix::unix-file-kind file) (truename file)) --- > #+:sbcl (if (sb-impl::native-file-kind file) (truename file)) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/fricas-devel?hl=en -~----------~----~----~----~------~----~------~--~---
