Re: [fricas-devel] Re: SF.net SVN: fricas:[896] trunk

2010-07-27 Thread Martin Rubey
Waldek Hebisch hebi...@math.uni.wroc.pl writes: testcase guessADE ellip -- guess ADE for elliptic functions -Coeff := Fraction(UnivariatePolynomial('k,Integer)) -Uts := UnivariateTaylorSeries(Coeff, 'x, 0) -Ets := EllipticFunctionsUnivariateTaylorSeries(Coeff, Uts) -snk := sn(x::Uts,

[fricas-devel] mingw: pwd -W?

2010-07-27 Thread Ralf Hemmecke
case $build in *mingw*) fricas_pwd=`pwd -W` axiom_top_srcdir=`cd $srcdir pwd -W` ;; Can somebody please point me to the specification of the -W option to pwd. That seems to be very much mingw specific. Ralf -- You received this message because you are subscribed to the Google

[fricas-devel] mktemp

2010-07-27 Thread Ralf Hemmecke
Is mktemp really used during fricas build? I can only find it in document.in and there it only appears in a comment. Another one is in src/Makefile.in:MKTEMP = @MKTEMP@ Also irrelevant since MKTEMP is nowhere used in the Makefile. But configure.ac has AC_CHECK_PROGS([MKTEMP], [mktemp]) So

Re: [fricas-devel] AWK_FOR_TARGET

2010-07-27 Thread Alfredo Portes
Awk is used by presea. On Tue, Jul 27, 2010 at 7:09 PM, Ralf Hemmecke r...@hemmecke.de wrote: In configure.ac I find if test -z $AWK_FOR_TARGET ; then   AWK_FOR_TARGET=`which $AWK` fi AC_SUBST(AWK_FOR_TARGET) What is this for? I cannot find any use in other files. Ralf -- You

[fricas-devel] double brackets?

2010-07-27 Thread Ralf Hemmecke
Waldek, in configure.ac there is ... sbcl) if echo $fricas_lisp_version | grep '^0\.' /dev/null || \ echo $fricas_lisp_version | grep '^1\.0.[[0-6]]$' /dev/null ; then AC_MSG_ERROR([sbcl $fricas_lisp_version is too old]) fi Why is there [[0-6]]

[fricas-devel] fricas_fasl_type2

2010-07-27 Thread Ralf Hemmecke
What is the variable fricas_fasl_type2 used for? I don't know what ecl returns as the fasl_type, but why is it first computed and then hardcoded to o? configure.ac: fricas_fasl_type2=$fricas_fasl_type case $fricas_lisp_flavor in ecl) fricas_fasl_type=o ;; *) ;; esac