I'm trying to avoid buying LispWorks for Macintosh but want to run hunchentoot on Intel Mac OS X 10.4.9.
The result is:
(ERROR "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
I have the latest SBCL-Version (1.0.4) and can't find anything on sbcl.org about versions with or without these features.
-jens
Jens Teich wrote:
I'm trying to avoid buying LispWorks for Macintosh but want to run hunchentoot on Intel Mac OS X 10.4.9.
The result is:
(ERROR "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
I have the latest SBCL-Version (1.0.4) and can't find anything on sbcl.org about versions with or without these features.
sorry for bothering, found the link in the documentation http://abstractstuff.livejournal.com/26811.html
-jens
Well, yes, you can do that, but you will probably have better luck with a threaded SBCL build.
Cyrus
On Apr 19, 2007, at 2:28 PM, Jens Teich wrote:
Jens Teich wrote:
I'm trying to avoid buying LispWorks for Macintosh but want to run hunchentoot on Intel Mac OS X 10.4.9.
The result is:
(ERROR "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
I have the latest SBCL-Version (1.0.4) and can't find anything on sbcl.org about versions with or without these features.
sorry for bothering, found the link in the documentation http://abstractstuff.livejournal.com/26811.html
-jens
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
On Thu, 19 Apr 2007 23:28:40 +0200, "Jens Teich" info@jensteich.de wrote:
The result is:
(ERROR "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
If you see that message, you're using a very old version of Hunchentoot. 0.7.0 introduced development support for non-threaded SBCL, although you shouldn't use it for production purposes.
Hi Jens,
You need to build a copy of SBCL with threads. You might consider using the latest source from CVS and build with a customize-target- features.lisp file like so:
(lambda (list) (flet ((enable (x) (pushnew x list)) (disable (x) (setf list (remove x list)))) #+nil (enable :sb-show) (enable :sb-after-xc-core) (enable :sb-ldb) (enable :sb-thread) (enable :mach-exception-handler) list))
good luck,
Cyrus
On Apr 19, 2007, at 2:17 PM, Jens Teich wrote:
I'm trying to avoid buying LispWorks for Macintosh but want to run hunchentoot on Intel Mac OS X 10.4.9.
The result is:
(ERROR "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
I have the latest SBCL-Version (1.0.4) and can't find anything on sbcl.org about versions with or without these features.
-jens _______________________________________________ tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
On Thu, 19 Apr 2007 23:17:30 +0200, Jens Teich info@jensteich.de wrote:
(ERROR "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
Actually, I'm pretty sure the "or on LispWorks" part was never in there...
Edi Weitz wrote:
On Thu, 19 Apr 2007 23:17:30 +0200, Jens Teich info@jensteich.de wrote:
(ERROR "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
Actually, I'm pretty sure the "or on LispWorks" part was never in there...
I am using the brand new version 0.9.0 but you are right, the error is thrown in my application.
#-(or (and :sb-thread :sb-unicode) :lispworks) (error "This application will only run on SBCL with thread and Unicode support or on LispWorks.")
(defpackage :webcontent (:use :cl :cl-who :hunchentoot :flex) (:export :*backup-interval* :*webcontent-port* :start :stop) #+:sbcl (:shadow :defconstant))
These lines will be familiar to you :)
thx jens