In hunchentoot.asd, I think the #+(not foo bar ...) bit is wrong:
Index: hunchentoot.asd =================================================================== --- hunchentoot.asd (revision 3230) +++ hunchentoot.asd (working copy) @@ -76,7 +76,7 @@ #+(and :lispworks :unix) (:file "unix-lw") #+(and :openmcl :unix) (:file "unix-mcl") #+(and :sbcl :unix (not :win32)) (:file "unix-sbcl") - #+(and (not :allegro :clisp :cmu :lispworks :openmcl :sbcl) :unix) (:file "unix-other") + #+(and (not (or :allegro :clisp :cmu :lispworks :openmcl :sbcl)) :unix) (:file "unix-other") (:file "set-timeouts") (:file "connection-manager") (:file "server")
On Fri, 30 May 2008 18:45:29 -0700, Cyrus Harmon ch-tbnl@bobobeach.com wrote:
In hunchentoot.asd, I think the #+(not foo bar ...) bit is wrong:
Right you are. Fixed now.
Thanks, Edi.