The latest version of portableaserve (retrieved from CVS on August 8th, 2007) gives the following error when processing a request on Lispworks 5.0.2 for Windows:
Error: Cannot take CDR of #
Type :b for backtrace, :c <option number=""> to proceed, or :? for other options</option>
USER 1 : 1 > :b
Call to cdr
Call to without-interrupts
Call to acl-compat.mp::invoke-with-timeout
Call to net.aserve::process-connection
Call to net.aserve::http-worker-thread
Call to (subfunction mp::process-sg-function mp::initialize-process-stack)
It seems that without-interrupts is not recognized as a macro during the compilation.
Adding an (eval-when (:compile-toplevel :load-toplevel :execute) ...) around the shadowing-import at the top of acl-compat/lispworks/acl-mp.lisp solves the problem.