Nicolas Neuss <[EMAIL PROTECTED]> writes:
> That's what I feared. I started updating and voila - I'm running exactly
> into the problems which I hate like the pest. Downloaded cmucl-binaries
> from 2003-06-20 (source from 06-22, let's see later how this fits). Now,
> ilisp does not compile. See:
>
> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
> ; In: LAMBDA (SYMBOL PACKAGE)
>
> ; (PCL::GENERIC-FUNCTION-PRETTY-ARGLIST FUNC)
> ; Warning: Undefined function PCL::GENERIC-FUNCTION-PRETTY-ARGLIST
I think that's fixed in ILISP CVS, but one can also do something like
(setq lisp::*enable-package-locked-errors* nil)
(defun pcl::generic-function-pretty-arglist (gf)
(mop:generic-function-lambda-list gf))
There's also a #+NEW-COMPILER in ILISP's CL sources somewhere that
doesn't work anymore because that feature has been removed. Just
remove the feature test and what's in #-NEW-COMPILER, if anything.
[...]
> cvs [login aborted]: recv() from server cvs.sourceforge.net: EOF
>
> Is this often the case with sourceforge?
I've seen it often with SBCL's CVS, and it seems to get worse every
week. Just updating works with a `while true; ...' and a lot of
patience, but forget diffs or logs; I've given up on that.