We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1a76d commit 60d973fCopy full SHA for 60d973f
build/pkgs/maxima/spkg-configure.m4
@@ -24,6 +24,13 @@ SAGE_SPKG_CONFIGURE([maxima], [
24
AS_IF([ecl --eval "(require 'maxima)" --eval "(quit)" \
25
>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD], [
26
AC_MSG_RESULT(yes)
27
+ dnl check also for the Maxima help - needed by Sage
28
+ AC_MSG_CHECKING([if maxima help is working])
29
+ maxima_help_ok=`echo ? ? | ${SAGE_MAXIMA} 2>&1 | grep Couldn`
30
+ AS_IF([test x$maxima_help_ok = x], [AC_MSG_RESULT(yes)], [
31
+ AC_MSG_RESULT(no)
32
+ sage_spkg_install_maxima=yes
33
+ ])
34
], [
35
AC_MSG_RESULT(no)
36
sage_spkg_install_maxima=yes
0 commit comments