Fixes for package lock errors in listener compilation/load
Paolo Amoroso
amoroso at mclink.it
Sun Sep 5 21:19:14 CEST 2004
The package lock errors during the compilation or load of the CLIM
Listener, with recent versions of CMUCL in the 19a prerelease or
release series, can be fixed by adding this form somewhere at the
beginning of Apps/Listener/cmu-hacks.lisp:
#+cmu19a
(progn (setf (ext:package-definition-lock (find-package "DEBUG")) nil)
(setf (ext:package-definition-lock (find-package "COMMON-LISP")) nil)
(setf (ext:package-definition-lock (find-package "EXT")) nil))
or perhaps:
#+cmu19a (ext:unlock-all-packages)
Paolo
--
Why Lisp? http://alu.cliki.net/RtL%20Highlight%20Film
More information about the mcclim-devel
mailing list