Looks like axiom_eval_flags is no longer used anywhere in fricas. Can somebody confirm?

That variable only appears in configure.ac and is not in AC_SUBST.

Ralf

## How are we supposed to tell the Lisp system to eval an expression
## in batch mode?  What is the extension of a compiled Lisp file?
case $fricas_lisp_flavor in
    gcl)
       fricas_quiet_flags='-batch'
       axiom_eval_flags='-eval'
       ;;
    ecl)
       fricas_quiet_flags='-norc'
       axiom_eval_flags='-eval'
       ;;
    sbcl)
       fricas_quiet_flags='--noinform --noprint --no-userinit'
       axiom_eval_flags='--eval'
       ;;
    cmucl)
       fricas_quiet_flags='-batch -noinit'
       axiom_eval_flags='-eval'
       ;;
    clisp)
       fricas_quiet_flags='--quiet -norc'
       axiom_eval_flags='-x'
       ;;
    openmcl)
       fricas_quiet_flags=
       axiom_eval_flags='--eval'
       ;;
    lispworks)
       fricas_quiet_flags=
       axiom_eval_flags='-init - -siteinit - -eval'
       ;;
*) AC_MSG_ERROR([We do not know how to build FriCAS this $fricas_lisp]) ;;
esac
AC_SUBST(fricas_quiet_flags)

--
You received this message because you are subscribed to the Google Groups "FriCAS - 
computer algebra system" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/fricas-devel?hl=en.

Reply via email to