[fricas-devel] urgent: preparing mswindows binaries

2008-10-02 Thread Martin Rubey
Dear Alfredo, Bill, I have now everything together what I need, but I am completely lost how to prepare this windows binary. I do not understand the nsis script. Does it install the X server etc. as well? On http://axiom-wiki.newsynthesis.org/FriCASBinaries I find Alfredo Portes has

[fricas-devel] hyperdoc style warnings with sbcl

2008-10-02 Thread Martin Rubey
Dear all, in sbcl based FriCAS, I get style warnings when first using the HyperDoc Browse facility. For the emacs mode, I need to make them go away. How can I do that? I tried )lisp (declaim (sb-ext:muffle-conditions warning)) within FriCAS (before triggering the autoload), but it didn't

[fricas-devel] Re: hyperdoc style warnings with sbcl

2008-10-02 Thread Waldek Hebisch
Martin Rubey wrote: Dear all, in sbcl based FriCAS, I get style warnings when first using the HyperDoc Browse facility. For the emacs mode, I need to make them go away. How can I do that? I tried )lisp (declaim (sb-ext:muffle-conditions warning)) within FriCAS (before

[fricas-devel] Re: urgent: preparing mswindows binaries

2008-10-02 Thread Martin Rubey
Martin Rubey [EMAIL PROTECTED] writes: To make it a Cygwin package, we would 1) need to check whether http://www.geda.seul.org/devel/cygwin/latest/release/noweb/ works, and if so, provide it on MathAction There seems to be a newer version around:

[fricas-devel] Re: urgent: preparing mswindows binaries

2008-10-02 Thread Martin Rubey
Alfredo Portes [EMAIL PROTECTED] writes: On Thu, Oct 2, 2008 at 1:56 PM, Martin Rubey [EMAIL PROTECTED] wrote: Bill Page [EMAIL PROTECTED] writes: As I said previously, please read this: http://axiom-wiki.newsynthesis.org/WindowsInstaller I read it, but I didn't understand it.

[fricas-devel] Re: urgent: preparing mswindows binaries

2008-10-02 Thread Alfredo Portes
On Thu, Oct 2, 2008 at 2:49 PM, Martin Rubey [EMAIL PROTECTED] wrote: But with Mingw, you don't get graphics, nor HyperDoc, do you? Nop :( Hm, in this case, I think time would be better spent if we make FriCAS a cygwin package as explained on http://cygwin.com/setup.html . ... we

[fricas-devel] Re: urgent: preparing mswindows binaries

2008-10-02 Thread Martin Rubey
Alfredo Portes [EMAIL PROTECTED] writes: On Thu, Oct 2, 2008 at 2:49 PM, Martin Rubey [EMAIL PROTECTED] wrote: But with Mingw, you don't get graphics, nor HyperDoc, do you? Nop :( Hm, in this case, I think time would be better spent if we make FriCAS a cygwin package as

[fricas-devel] Re: urgent: preparing mswindows binaries

2008-10-02 Thread Alfredo Portes
On Thu, Oct 2, 2008 at 12:04 PM, Bill Page [EMAIL PROTECTED] wrote: * What happens, if the user has cygwin already installed? That is a bad situation - at least it was with the previous version of the FriCAS windows install program that Alfredo distributed. FriCAS will work as it should but

[fricas-devel] Re: [open-axiom-patches] a string is not a double

2008-10-02 Thread Martin Rubey
Dear Waldek, Gabriel Dos Reis [EMAIL PROTECTED] writes: OpenAxiom now uses proclamation at the generated Lisp level to try to catch problems, and also for optimization purposes (in particular for SBCL-based builds). This means that `pretend's like above (which really violate data

[fricas-devel] Re: [open-axiom-patches] a string is not a double

2008-10-02 Thread Waldek Hebisch
Martin Rubey wrote: Dear Waldek, Gabriel Dos Reis [EMAIL PROTECTED] writes: OpenAxiom now uses proclamation at the generated Lisp level to try to catch problems, and also for optimization purposes (in particular for SBCL-based builds). This means that `pretend's like above (which

[fricas-devel] Re: hyperdoc style warnings with sbcl

2008-10-02 Thread Waldek Hebisch
Martin Rubey wrote: Waldek Hebisch [EMAIL PROTECTED] writes: OK, but maybe we could muffle the warning then locally in the autoload facility? Yes, we can to this. Try: (handler-bind ((style-warning #'muffle-warning)) (|browserAutoloadOnceTrigger|)) Superb! This works - I