Changeset 354f3b in git


Ignore:
Timestamp:
Nov 29, 1999, 1:56:11 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
6429844b12e9748d6a461099af9e807e552d8950
Parents:
7736c5c981277530fc20586946850a0fe14b5348
Message:
 Changes to docu and install


git-svn-id: file:///usr/local/Singular/svn/trunk@3933 2c84dea3-7e68-4137-9b89-c4e89433aadc
Files:
1 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r7736c5 r354f3b  
    130130install_prefix  = ${localdir}/Singular/${S_VERSION}
    131131
    132 BINDIST_DIRS    = Singular
     132BINDIST_DIRS    = Singular doc
    133133SHAREDIST_DIRS  = Singular doc emacs
    134134TMPDIR          = ${TMP_DIR}/singdist
     
    156156        ${LN_S} ${install_prefix}/${SINGUNAME}/Singular ${localdir}/bin/Singular-${S_VERSION}
    157157
     158dist: sharedist bindist
     159
    158160sharedist:
    159         if test -e ${TMPDIR}; then rm -f ${TMPDIR}; fi
     161        if test -e ${TMPDIR}; then rm -rf ${TMPDIR}; fi
    160162        ${MAKE} install-sharedist localdir=${TMPDIR}
    161         cd ${TMPDIR}; tar czf Singular-${S_VERSION}-share.tgz
     163        cd ${TMPDIR}; tar czf Singular-${S_VERSION}-share.tgz Singular
    162164        mv ${TMPDIR}/Singular-${S_VERSION}-share.tgz .
    163165        rm -rf ${TMPDIR}
    164166
    165167bindist:
    166         if test -e ${TMPDIR}; then rm -r ${TMPDIR}; fi
     168        if test -e ${TMPDIR}; then rm -fr ${TMPDIR}; fi
    167169        ${MAKE} install-bindist localdir=${TMPDIR}
    168         cd ${TMPDIR}; tar czf Singular-${S_VERSION}-${SINGUNAME}.tgz
     170        cd ${TMPDIR}; tar czf Singular-${S_VERSION}-${SINGUNAME}.tgz Singular
    169171        mv ${TMPDIR}/Singular-${S_VERSION}-${SINGUNAME}.tgz .
    170172        rm -rf ${TMPDIR}
  • configure

    r7736c5 r354f3b  
    575575
    576576
    577 OUTPUT_MAKEFILES="Makefile doc/Makefile doc/version.texi"
     577OUTPUT_MAKEFILES="Makefile doc/Makefile doc/version.texi doc/uname.texi"
    578578if test -d "rpm"; then
    579579   OUTPUT_MAKEFILES=$OUTPUT_MAKEFILES" rpm/Makefile"
     
    935935echo "$ac_t""$CPP" 1>&6
    936936
     937ac_aux_dir=
     938for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
     939  if test -f $ac_dir/install-sh; then
     940    ac_aux_dir=$ac_dir
     941    ac_install_sh="$ac_aux_dir/install-sh -c"
     942    break
     943  elif test -f $ac_dir/install.sh; then
     944    ac_aux_dir=$ac_dir
     945    ac_install_sh="$ac_aux_dir/install.sh -c"
     946    break
     947  fi
     948done
     949if test -z "$ac_aux_dir"; then
     950  { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
     951fi
     952ac_config_guess=$ac_aux_dir/config.guess
     953ac_config_sub=$ac_aux_dir/config.sub
     954ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
     955
     956# Find a good install program.  We prefer a C program (faster),
     957# so one script is as good as another.  But avoid the broken or
     958# incompatible versions:
     959# SysV /etc/install, /usr/sbin/install
     960# SunOS /usr/etc/install
     961# IRIX /sbin/install
     962# AIX /bin/install
     963# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
     964# AFS /usr/afsws/bin/install, which mishandles nonexistent args
     965# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
     966# ./install, which can be erroneously created by make from ./install.sh.
     967echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
     968echo "configure:969: checking for a BSD compatible install" >&5
     969if test -z "$INSTALL"; then
     970if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
     971  echo $ac_n "(cached) $ac_c" 1>&6
     972else
     973    IFS="${IFS=         }"; ac_save_IFS="$IFS"; IFS=":"
     974  for ac_dir in $PATH; do
     975    # Account for people who put trailing slashes in PATH elements.
     976    case "$ac_dir/" in
     977    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
     978    *)
     979      # OSF1 and SCO ODT 3.0 have their own names for install.
     980      # Don't use installbsd from OSF since it installs stuff as root
     981      # by default.
     982      for ac_prog in ginstall scoinst install; do
     983        if test -f $ac_dir/$ac_prog; then
     984          if test $ac_prog = install &&
     985            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
     986            # AIX install.  It has an incompatible calling convention.
     987            :
     988          else
     989            ac_cv_path_install="$ac_dir/$ac_prog -c"
     990            break 2
     991          fi
     992        fi
     993      done
     994      ;;
     995    esac
     996  done
     997  IFS="$ac_save_IFS"
     998
     999fi
     1000  if test "${ac_cv_path_install+set}" = set; then
     1001    INSTALL="$ac_cv_path_install"
     1002  else
     1003    # As a last resort, use the slow shell script.  We don't cache a
     1004    # path for INSTALL within a source directory, because that will
     1005    # break other packages using the cache if that directory is
     1006    # removed, or if the path is relative.
     1007    INSTALL="$ac_install_sh"
     1008  fi
     1009fi
     1010echo "$ac_t""$INSTALL" 1>&6
     1011
     1012# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
     1013# It thinks the first close brace ends the variable substitution.
     1014test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
     1015
     1016test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
     1017
     1018test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
     1019
    9371020echo $ac_n "checking for AIX""... $ac_c" 1>&6
    938 echo "configure:939: checking for AIX" >&5
     1021echo "configure:1022: checking for AIX" >&5
    9391022cat > conftest.$ac_ext <<EOF
    940 #line 941 "configure"
     1023#line 1024 "configure"
    9411024#include "confdefs.h"
    9421025#ifdef _AIX
     
    9651048set dummy $ac_prog; ac_word=$2
    9661049echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    967 echo "configure:968: checking for $ac_word" >&5
     1050echo "configure:1051: checking for $ac_word" >&5
    9681051if eval "test \"`echo '$''{'ac_cv_prog_PERL'+set}'`\" = set"; then
    9691052  echo $ac_n "(cached) $ac_c" 1>&6
     
    9971080set dummy latex2html; ac_word=$2
    9981081echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    999 echo "configure:1000: checking for $ac_word" >&5
     1082echo "configure:1083: checking for $ac_word" >&5
    10001083if eval "test \"`echo '$''{'ac_cv_prog_LATEX2HTML'+set}'`\" = set"; then
    10011084  echo $ac_n "(cached) $ac_c" 1>&6
     
    10241107
    10251108echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
    1026 echo "configure:1027: checking whether ln -s works" >&5
     1109echo "configure:1110: checking whether ln -s works" >&5
    10271110if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
    10281111  echo $ac_n "(cached) $ac_c" 1>&6
     
    10561139set dummy texi2html; ac_word=$2
    10571140echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1058 echo "configure:1059: checking for $ac_word" >&5
     1141echo "configure:1142: checking for $ac_word" >&5
    10591142if eval "test \"`echo '$''{'ac_cv_prog_TEXI2HTML'+set}'`\" = set"; then
    10601143  echo $ac_n "(cached) $ac_c" 1>&6
     
    11301213# check for AIX
    11311214echo $ac_n "checking whether _AIX is defined""... $ac_c" 1>&6
    1132 echo "configure:1133: checking whether _AIX is defined" >&5
     1215echo "configure:1216: checking whether _AIX is defined" >&5
    11331216if eval "test \"`echo '$''{'ac_cv_is_aix'+set}'`\" = set"; then
    11341217  echo $ac_n "(cached) $ac_c" 1>&6
    11351218else
    11361219  cat > conftest.$ac_ext <<EOF
    1137 #line 1138 "configure"
     1220#line 1221 "configure"
    11381221#include "confdefs.h"
    11391222#ifdef _AIX
     
    11611244
    11621245echo $ac_n "checking for atof in -lm""... $ac_c" 1>&6
    1163 echo "configure:1164: checking for atof in -lm" >&5
     1246echo "configure:1247: checking for atof in -lm" >&5
    11641247ac_lib_var=`echo m'_'atof | sed 'y%./+-%__p_%'`
    11651248if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    11691252LIBS="-lm  $LIBS"
    11701253cat > conftest.$ac_ext <<EOF
    1171 #line 1172 "configure"
     1254#line 1255 "configure"
    11721255#include "confdefs.h"
    11731256/* Override any gcc2 internal prototype to avoid an error.  */
     
    11801263; return 0; }
    11811264EOF
    1182 if { (eval echo configure:1183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1265if { (eval echo configure:1266: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    11831266  rm -rf conftest*
    11841267  eval "ac_cv_lib_$ac_lib_var=yes"
     
    12081291
    12091292echo $ac_n "checking for socket in -lbsd""... $ac_c" 1>&6
    1210 echo "configure:1211: checking for socket in -lbsd" >&5
     1293echo "configure:1294: checking for socket in -lbsd" >&5
    12111294ac_lib_var=`echo bsd'_'socket | sed 'y%./+-%__p_%'`
    12121295if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    12161299LIBS="-lbsd  $LIBS"
    12171300cat > conftest.$ac_ext <<EOF
    1218 #line 1219 "configure"
     1301#line 1302 "configure"
    12191302#include "confdefs.h"
    12201303/* Override any gcc2 internal prototype to avoid an error.  */
     
    12271310; return 0; }
    12281311EOF
    1229 if { (eval echo configure:1230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1312if { (eval echo configure:1313: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    12301313  rm -rf conftest*
    12311314  eval "ac_cv_lib_$ac_lib_var=yes"
     
    12551338
    12561339echo $ac_n "checking for listen in -lsocket""... $ac_c" 1>&6
    1257 echo "configure:1258: checking for listen in -lsocket" >&5
     1340echo "configure:1341: checking for listen in -lsocket" >&5
    12581341ac_lib_var=`echo socket'_'listen | sed 'y%./+-%__p_%'`
    12591342if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    12631346LIBS="-lsocket  $LIBS"
    12641347cat > conftest.$ac_ext <<EOF
    1265 #line 1266 "configure"
     1348#line 1349 "configure"
    12661349#include "confdefs.h"
    12671350/* Override any gcc2 internal prototype to avoid an error.  */
     
    12741357; return 0; }
    12751358EOF
    1276 if { (eval echo configure:1277: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1359if { (eval echo configure:1360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    12771360  rm -rf conftest*
    12781361  eval "ac_cv_lib_$ac_lib_var=yes"
     
    13021385
    13031386echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
    1304 echo "configure:1305: checking for gethostbyname in -lnsl" >&5
     1387echo "configure:1388: checking for gethostbyname in -lnsl" >&5
    13051388ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
    13061389if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    13101393LIBS="-lnsl  $LIBS"
    13111394cat > conftest.$ac_ext <<EOF
    1312 #line 1313 "configure"
     1395#line 1396 "configure"
    13131396#include "confdefs.h"
    13141397/* Override any gcc2 internal prototype to avoid an error.  */
     
    13211404; return 0; }
    13221405EOF
    1323 if { (eval echo configure:1324: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1406if { (eval echo configure:1407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    13241407  rm -rf conftest*
    13251408  eval "ac_cv_lib_$ac_lib_var=yes"
     
    13491432
    13501433echo $ac_n "checking for mpq_init in -lgmp""... $ac_c" 1>&6
    1351 echo "configure:1352: checking for mpq_init in -lgmp" >&5
     1434echo "configure:1435: checking for mpq_init in -lgmp" >&5
    13521435ac_lib_var=`echo gmp'_'mpq_init | sed 'y%./+-%__p_%'`
    13531436if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    13571440LIBS="-lgmp  $LIBS"
    13581441cat > conftest.$ac_ext <<EOF
    1359 #line 1360 "configure"
     1442#line 1443 "configure"
    13601443#include "confdefs.h"
    13611444/* Override any gcc2 internal prototype to avoid an error.  */
     
    13681451; return 0; }
    13691452EOF
    1370 if { (eval echo configure:1371: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1453if { (eval echo configure:1454: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    13711454  rm -rf conftest*
    13721455  eval "ac_cv_lib_$ac_lib_var=yes"
     
    13961479
    13971480echo $ac_n "checking for mpz_init in -lsmallgmp""... $ac_c" 1>&6
    1398 echo "configure:1399: checking for mpz_init in -lsmallgmp" >&5
     1481echo "configure:1482: checking for mpz_init in -lsmallgmp" >&5
    13991482ac_lib_var=`echo smallgmp'_'mpz_init | sed 'y%./+-%__p_%'`
    14001483if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    14041487LIBS="-lsmallgmp  $LIBS"
    14051488cat > conftest.$ac_ext <<EOF
    1406 #line 1407 "configure"
     1489#line 1490 "configure"
    14071490#include "confdefs.h"
    14081491/* Override any gcc2 internal prototype to avoid an error.  */
     
    14151498; return 0; }
    14161499EOF
    1417 if { (eval echo configure:1418: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1500if { (eval echo configure:1501: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    14181501  rm -rf conftest*
    14191502  eval "ac_cv_lib_$ac_lib_var=yes"
     
    14431526
    14441527echo $ac_n "checking for IMP_PutGmpInt in -lMP""... $ac_c" 1>&6
    1445 echo "configure:1446: checking for IMP_PutGmpInt in -lMP" >&5
     1528echo "configure:1529: checking for IMP_PutGmpInt in -lMP" >&5
    14461529ac_lib_var=`echo MP'_'IMP_PutGmpInt | sed 'y%./+-%__p_%'`
    14471530if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    14511534LIBS="-lMP  $LIBS"
    14521535cat > conftest.$ac_ext <<EOF
    1453 #line 1454 "configure"
     1536#line 1537 "configure"
    14541537#include "confdefs.h"
    14551538/* Override any gcc2 internal prototype to avoid an error.  */
     
    14621545; return 0; }
    14631546EOF
    1464 if { (eval echo configure:1465: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1547if { (eval echo configure:1548: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    14651548  rm -rf conftest*
    14661549  eval "ac_cv_lib_$ac_lib_var=yes"
     
    14901573
    14911574echo $ac_n "checking for MPT_GetTree in -lMPT""... $ac_c" 1>&6
    1492 echo "configure:1493: checking for MPT_GetTree in -lMPT" >&5
     1575echo "configure:1576: checking for MPT_GetTree in -lMPT" >&5
    14931576ac_lib_var=`echo MPT'_'MPT_GetTree | sed 'y%./+-%__p_%'`
    14941577if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    14981581LIBS="-lMPT  $LIBS"
    14991582cat > conftest.$ac_ext <<EOF
    1500 #line 1501 "configure"
     1583#line 1584 "configure"
    15011584#include "confdefs.h"
    15021585/* Override any gcc2 internal prototype to avoid an error.  */
     
    15091592; return 0; }
    15101593EOF
    1511 if { (eval echo configure:1512: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1594if { (eval echo configure:1595: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    15121595  rm -rf conftest*
    15131596  eval "ac_cv_lib_$ac_lib_var=yes"
     
    15371620
    15381621echo $ac_n "checking for atof in -lsingcf""... $ac_c" 1>&6
    1539 echo "configure:1540: checking for atof in -lsingcf" >&5
     1622echo "configure:1623: checking for atof in -lsingcf" >&5
    15401623ac_lib_var=`echo singcf'_'atof | sed 'y%./+-%__p_%'`
    15411624if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    15451628LIBS="-lsingcf  $LIBS"
    15461629cat > conftest.$ac_ext <<EOF
    1547 #line 1548 "configure"
     1630#line 1631 "configure"
    15481631#include "confdefs.h"
    15491632/* Override any gcc2 internal prototype to avoid an error.  */
     
    15561639; return 0; }
    15571640EOF
    1558 if { (eval echo configure:1559: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1641if { (eval echo configure:1642: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    15591642  rm -rf conftest*
    15601643  eval "ac_cv_lib_$ac_lib_var=yes"
     
    15841667
    15851668echo $ac_n "checking for atof in -lsingfac""... $ac_c" 1>&6
    1586 echo "configure:1587: checking for atof in -lsingfac" >&5
     1669echo "configure:1670: checking for atof in -lsingfac" >&5
    15871670ac_lib_var=`echo singfac'_'atof | sed 'y%./+-%__p_%'`
    15881671if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    15921675LIBS="-lsingfac  $LIBS"
    15931676cat > conftest.$ac_ext <<EOF
    1594 #line 1595 "configure"
     1677#line 1678 "configure"
    15951678#include "confdefs.h"
    15961679/* Override any gcc2 internal prototype to avoid an error.  */
     
    16031686; return 0; }
    16041687EOF
    1605 if { (eval echo configure:1606: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
     1688if { (eval echo configure:1689: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
    16061689  rm -rf conftest*
    16071690  eval "ac_cv_lib_$ac_lib_var=yes"
     
    16351718ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    16361719echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    1637 echo "configure:1638: checking for $ac_hdr" >&5
     1720echo "configure:1721: checking for $ac_hdr" >&5
    16381721if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    16391722  echo $ac_n "(cached) $ac_c" 1>&6
    16401723else
    16411724  cat > conftest.$ac_ext <<EOF
    1642 #line 1643 "configure"
     1725#line 1726 "configure"
    16431726#include "confdefs.h"
    16441727#include <$ac_hdr>
    16451728EOF
    16461729ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1647 { (eval echo configure:1648: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1730{ (eval echo configure:1731: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    16481731ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
    16491732if test -z "$ac_err"; then
     
    17871870
    17881871echo $ac_n "checking which tmp dir to use""... $ac_c" 1>&6
    1789 echo "configure:1790: checking which tmp dir to use" >&5
     1872echo "configure:1873: checking which tmp dir to use" >&5
    17901873if test "${with_tmpdir+set}" = set && test -d ${with_tmpdir}; then
    17911874  if (echo "${with_tmpdir}" | egrep "\." >/dev/null 2>&1)
     
    18041887if test "${with_perl5+set}" != set; then
    18051888  echo $ac_n "checking for perl5""... $ac_c" 1>&6
    1806 echo "configure:1807: checking for perl5" >&5
     1889echo "configure:1890: checking for perl5" >&5
    18071890    if eval "test \"`echo '$''{'ac_cv_prog_perl5'+set}'`\" = set"; then
    18081891  echo $ac_n "(cached) $ac_c" 1>&6
     
    18411924set dummy $ac_prog; ac_word=$2
    18421925echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    1843 echo "configure:1844: checking for $ac_word" >&5
     1926echo "configure:1927: checking for $ac_word" >&5
    18441927if eval "test \"`echo '$''{'ac_cv_prog_PERL5'+set}'`\" = set"; then
    18451928  echo $ac_n "(cached) $ac_c" 1>&6
     
    18771960
    18781961echo $ac_n "checking whether to configure and build texinfo""... $ac_c" 1>&6
    1879 echo "configure:1880: checking whether to configure and build texinfo" >&5
     1962echo "configure:1963: checking whether to configure and build texinfo" >&5
    18801963if test "$enable_texinfo" != no && test -d Texinfo; then
    18811964  echo "$ac_t""yes" 1>&6
     
    18991982
    19001983echo $ac_n "checking whether to configure and build gmp lib""... $ac_c" 1>&6
    1901 echo "configure:1902: checking whether to configure and build gmp lib" >&5
     1984echo "configure:1985: checking whether to configure and build gmp lib" >&5
    19021985if test "$enable_gmp" != yes && test "$enable_gmp" != no; then
    19031986  if test "$ac_gmp_ok" != yes && test -d gmp; then
     
    19252008
    19262009echo $ac_n "checking whether to configure and build smallgmp lib""... $ac_c" 1>&6
    1927 echo "configure:1928: checking whether to configure and build smallgmp lib" >&5
     2010echo "configure:2011: checking whether to configure and build smallgmp lib" >&5
    19282011if test "$enable_smallgmp" != yes && test "$enable_smallgmp" != no; then
    19292012  if test "$ac_smallgmp_ok" != yes && test "$ac_gmp_ok" != yes && \
     
    19642047
    19652048echo $ac_n "checking whether to configure and build MP lib""... $ac_c" 1>&6
    1966 echo "configure:1967: checking whether to configure and build MP lib" >&5
     2049echo "configure:2050: checking whether to configure and build MP lib" >&5
    19672050if test "$enable_MP" != yes && test "$enable_MP" != no; then
    19682051  if test "$with_MP" != no && test "$ac_MP_ok" != yes && test -d MP && \
     
    19932076 
    19942077echo $ac_n "checking whether to configure and build factory lib""... $ac_c" 1>&6
    1995 echo "configure:1996: checking whether to configure and build factory lib" >&5
     2078echo "configure:2079: checking whether to configure and build factory lib" >&5
    19962079if test "$enable_factory" != yes && test "$enable_factory" != no; then
    19972080  if test "$with_factory" != no && test "$ac_factory_ok" != yes && \
     
    20182101
    20192102echo $ac_n "checking whether to configure and build libfac lib""... $ac_c" 1>&6
    2020 echo "configure:2021: checking whether to configure and build libfac lib" >&5
     2103echo "configure:2104: checking whether to configure and build libfac lib" >&5
    20212104if test "$enable_libfac" != yes && test "$enable_libfac" != no; then
    20222105  if test "$with_libfac" != no && test "$ac_libfac_ok" != yes && \
     
    20482131
    20492132echo $ac_n "checking whether to configure and build sgroup lib""... $ac_c" 1>&6
    2050 echo "configure:2051: checking whether to configure and build sgroup lib" >&5
     2133echo "configure:2134: checking whether to configure and build sgroup lib" >&5
    20512134if test "$enable_sgroup" != yes && test "$enable_sgroup" != no; then
    20522135  if test "$with_sgroup" != no && test "$ac_sgroup_ok" != yes && \
     
    20782161
    20792162echo $ac_n "checking whether to configure and build Singular""... $ac_c" 1>&6
    2080 echo "configure:2081: checking whether to configure and build Singular" >&5
     2163echo "configure:2164: checking whether to configure and build Singular" >&5
    20812164if test "$enable_Singular" != yes && test "$enable_Singular" != no; then
    20822165  if test "$with_Singular" != no && test -d Singular; then
     
    21032186
    21042187echo $ac_n "checking which apint package to use""... $ac_c" 1>&6
    2105 echo "configure:2106: checking which apint package to use" >&5
     2188echo "configure:2189: checking which apint package to use" >&5
    21062189if test "$with_apint" = gmp; then
    21072190  if test "$ac_gmp_ok" = yes || test "$enable_gmp" = yes; then
     
    21272210
    21282211echo $ac_n "checking whether to use with MP""... $ac_c" 1>&6
    2129 echo "configure:2130: checking whether to use with MP" >&5
     2212echo "configure:2213: checking whether to use with MP" >&5
    21302213if test "$with_MP" = yes; then
    21312214  if test "$ac_MP_ok" = yes || test "$enable_MP" = yes; then
     
    21462229
    21472230echo $ac_n "checking whether to use with factory""... $ac_c" 1>&6
    2148 echo "configure:2149: checking whether to use with factory" >&5
     2231echo "configure:2232: checking whether to use with factory" >&5
    21492232if test "$with_factory" = yes; then
    21502233  if test "$ac_factory_ok" = yes || test "$enable_factory" = yes; then
     
    21652248 
    21662249echo $ac_n "checking whether to use with libfac""... $ac_c" 1>&6
    2167 echo "configure:2168: checking whether to use with libfac" >&5
     2250echo "configure:2251: checking whether to use with libfac" >&5
    21682251if test "$with_libfac" = yes; then
    21692252  if test "$ac_libfac_ok" = yes || test "$enable_libfac" = yes; then
     
    21842267
    21852268echo $ac_n "checking whether to use mtrack""... $ac_c" 1>&6
    2186 echo "configure:2187: checking whether to use mtrack" >&5
     2269echo "configure:2270: checking whether to use mtrack" >&5
    21872270if test -d mpr && test "$ac_cv_singuname" = ix86-Linux; then
    21882271   echo "$ac_t""yes" 1>&6
     
    21932276
    21942277echo $ac_n "checking whether to use with Singular""... $ac_c" 1>&6
    2195 echo "configure:2196: checking whether to use with Singular" >&5
     2278echo "configure:2279: checking whether to use with Singular" >&5
    21962279if test "$with_Singular" != no && test "$with_Singular" != yes; then
    21972280  if test "$enable_Singular" = yes; then
     
    22522335
    22532336echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    2254 echo "configure:2255: checking whether ${MAKE-make} sets \${MAKE}" >&5
     2337echo "configure:2338: checking whether ${MAKE-make} sets \${MAKE}" >&5
    22552338set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    22562339if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    22802363
    22812364
    2282 
    2283 ac_aux_dir=
    2284 for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
    2285   if test -f $ac_dir/install-sh; then
    2286     ac_aux_dir=$ac_dir
    2287     ac_install_sh="$ac_aux_dir/install-sh -c"
    2288     break
    2289   elif test -f $ac_dir/install.sh; then
    2290     ac_aux_dir=$ac_dir
    2291     ac_install_sh="$ac_aux_dir/install.sh -c"
    2292     break
    2293   fi
    2294 done
    2295 if test -z "$ac_aux_dir"; then
    2296   { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
    2297 fi
    2298 ac_config_guess=$ac_aux_dir/config.guess
    2299 ac_config_sub=$ac_aux_dir/config.sub
    2300 ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
    23012365
    23022366subdirs="$CONFIG_SUBDIRS"
     
    24142478
    24152479ac_given_srcdir=$srcdir
     2480ac_given_INSTALL="$INSTALL"
    24162481
    24172482trap 'rm -fr `echo "${OUTPUT_MAKEFILES}" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
     
    24532518s%@CC@%$CC%g
    24542519s%@CPP@%$CPP%g
     2520s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
     2521s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
     2522s%@INSTALL_DATA@%$INSTALL_DATA%g
    24552523s%@PERL@%$PERL%g
    24562524s%@LATEX2HTML@%$LATEX2HTML%g
     
    25452613  esac
    25462614
     2615  case "$ac_given_INSTALL" in
     2616  [/$]*) INSTALL="$ac_given_INSTALL" ;;
     2617  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
     2618  esac
    25472619
    25482620  echo creating "$ac_file"
     
    25602632s%@srcdir@%$srcdir%g
    25612633s%@top_srcdir@%$top_srcdir%g
     2634s%@INSTALL@%$INSTALL%g
    25622635" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
    25632636fi; done
     
    26552728        ac_sub_cache_file="$ac_dots$cache_file" ;;
    26562729      esac
     2730  case "$ac_given_INSTALL" in
     2731        [/$]*) INSTALL="$ac_given_INSTALL" ;;
     2732        *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
     2733        esac
    26572734
    26582735      echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir"
  • configure.in

    r7736c5 r354f3b  
    22AC_INIT(Singular/matpol.h)
    33AC_PREFIX_DEFAULT(`pwd`)
    4 OUTPUT_MAKEFILES="Makefile doc/Makefile doc/version.texi"
     4OUTPUT_MAKEFILES="Makefile doc/Makefile doc/version.texi doc/uname.texi"
    55if test -d "rpm"; then
    66   OUTPUT_MAKEFILES=$OUTPUT_MAKEFILES" rpm/Makefile"
  • doc/INSTALL_unix.texi

    r7736c5 r354f3b  
    11@comment -*-texinfo-*-
    2 @comment $Id: INSTALL_unix.texi,v 1.2 1999-11-26 18:03:25 obachman Exp $
     2@comment $Id: INSTALL_unix.texi,v 1.3 1999-11-29 12:56:06 obachman Exp $
    33@comment this file contains the installation instruction for Singular on
    44@comment Unix
     5@ifclear VERSION
    56@include version.texi
     7@end ifclear
    68
    79@ifclear singularmanual
     
    1416
    1517@ifset UNAME
    16 @set _UNAME @value{UNAME}
     18@include uname.texi
    1719@end ifset
    1820
     
    2729archives:
    2830@table @code
    29 @item Singular-@value{VERSION}-share.tar.gz
     31@item Singular-@value{VERSION}-share.tgz
    3032contains architecture independent data like documentation and libraries
    31 (alternativly, you may also download
     33(alternatively, you may also download
    3234@code{Singular-@value{VERSION}-share.zip}).
    33 @item Singular-@value{VERSION}-@value{_UNAME}.tar.gz
     35@item Singular-@value{VERSION}-@value{_UNAME}.tgz
    3436contains architecture dependent executables, like the @sc{Singular}
    35 program
     37program.
    3638@ifclear UNAME
    37  where @code{@value{_UNAME}} is a description of the processor and operating system
     39@code{@value{_UNAME}} is a description of the processor and operating system
    3840for which @sc{Singular} is compiled (e.g, @code{ix86-Linux}). Please contact us if
    39 you can not find an appropriate architecture dependent archive
    40 @end ifclear
    41 .
     41you can not find an appropriate architecture dependent archive.
     42@end ifclear
    4243@end table
    4344
    44 You can obtain these files from
    45 @url{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/}.
     45You can obtain these (and other) archives from
     46@display
     47@uref{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/}.
     48@end display
    4649
    4750@ifclear singularmanual
     
    8285Unpack the archives:
    8386@smallexample
    84 gzip -dc Singular-@value{VERSION}-@value{_UNAME}.tar.gz | tar -pxf -
    85 gzip -dc Singular-@value{VERSION}-share.tar.gz | tar -pxf -
     87gzip -dc Singular-@value{VERSION}-@value{_UNAME}.tgz | tar -pxf -
     88gzip -dc Singular-@value{VERSION}-share.tgz | tar -pxf -
    8689@end smallexample
    8790If you have downloaded @code{Singular-@value{VERSION}-share.zip},
     
    113116to figure out where its @sc{Singular} libraries and on-line
    114117documentation files are.  These constraints on the local directory layout
    115 are necessary to avoid having to hardcode pathnames into the
     118are necessary to avoid having to hard-code pathnames into the
    116119executables, or require that environment variables be set before
    117120running the executable. In particular, you should not move or copy
     
    147150
    148151You also might want to adjust your personal start-up files
    149 (@code{~/.cshrc} for @code{csh}, @code{.tcshrc} for @code{tcsh},
    150 @code{.profile} for @code{bash}) accordingly,
     152(@code{~/.cshrc} for @code{csh}, @code{~/.tcshrc} for @code{tcsh}, or
     153@code{~/.profile} for @code{bash}) accordingly,
    151154so that the @code{$PATH} variable is set automatically each time you login.
    152155
    153156@strong{IMPORTANT:} Do @emph{never} move or copy the file
    154 @code{Singular/@value{VERSION}/@value{_UNAME}/Singular} to another place, but use
    155 soft-links instead.
     157@code{Singular/@value{VERSION}/@value{_UNAME}/Singular} to another
     158place, but use soft-links instead.
    156159
    157160@item
     
    162165@item @strong{Feature} @tab @strong{Requires}
    163166@item running @code{ESingular}, or @code{Singular} within Emacs
    164 @tab @uref{http://www.fsf.org/software/emacs/emacs.html,Emacs} version
    165 20 or higher, or, @uref{http://www.xemacs.org,Xemacs} version 20 or
     167@tab @uref{http://www.fsf.org/software/emacs/emacs.html,,Emacs} version
     16820 or higher, or, @uref{http://www.xemacs.org,,Xemacs} version 20 or
    166169higher
     170
    167171@item on-line @code{html} help
    168 @tab @uref{http://www.netscape.com, netscape} browser
     172@tab @uref{http://www.netscape.com,,netscape} browser
    169173@item on-line @code{info} help
    170 @tab @uref{http://www.texinfo.org, info}, or
    171 @uref{http://math-www.uni-paderborn.de/~axel/tkinfo/, tkinfo} texinfo browser programs
     174@tab @uref{http://www.texinfo.org,,info}, or
     175@uref{http://math-www.uni-paderborn.de/~axel/tkinfo/,,tkinfo} texinfo browser programs
    172176@item TAB completion and history mechanism of ASCII-terminal interface
    173 @tab shared @uref{ftp://ftp.de.uu.net/pub/gnu/readline/, readline}
     177@tab shared @uref{ftp://ftp.de.uu.net/pub/gnu/readline/,,readline}
    174178library, i.e. @code{/usr/lib/libreadline.so}
    175 @item visulization of curves and surfaces with @code{surf} (i.e., usage of @sc{Singular} library @code{surf.lib})
     179@item visualization of curves and surfaces
    176180@tab
    177 @uref{http://www.mathematik.uni-mainz.de/AlgebraischeGeometrie/surf/surf.shtml,surf}
     181@uref{http://www.mathematik.uni-mainz.de/AlgebraischeGeometrie/surf/surf.shtml,,surf}
    178182version 0.9 or higher (only available for Linux and Solaris).
    179183@end multitable
    180184
    181 Notice that you may also download most of these programs from
     185You may download most of these programs from
     186@display
    182187@uref{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/utils/}.
     188@end display
    183189
    184190@item Customize the on-line help system:
     
    187193the @code{netscape} program.
    188194
    189 However, this behaviour can be customized in several ways
    190 using the @sc{Singular} commands @code{system("--allow-net", 1)} and
    191 @code{system("--browser",<browser>")} (or, by starting up @sc{Singular}
     195However, this behavior can be customized in several ways
     196using the @sc{Singular} commands @code{system("--browser",<browser>")}
     197and @code{system("--allow-net", 1)} (or, by starting up @sc{Singular}
    192198with the respective command line options).
    193199
    194200In particular, creating the file
    195 @code{Singular/@value{VERSION}/LIB/.singularrc/} and putting the
     201@code{Singular/@value{VERSION}/LIB/.singularrc} and putting the
    196202@sc{Singular} command
    197203@smallexample
     
    199205@end smallexample
    200206in it, allows the on-line help system to fetch its @code{html} pages
    201 from @uref{www.mathemtaik.uni-kl.de/~zca/Singular, Singular's WWW home site}
     207from @uref{http://www.mathemtaik.uni-kl.de/~zca/Singular, Singular's WWW
     208home site}
    202209in case its local html pages are not found. That is, you may delete your
    203210local html pages, after setting this option.
     
    230237@heading Troubleshooting
    231238
    232 
    233 
     239@itemize
     240@item General: @sc{Singular} can not find its libraries or on-line help
     241@enumerate
     242@item
     243Start up @sc{Singular}, and issue the command @code{system("Singular");}.
     244If this does not return the correct and expanded location of the
     245@sc{Singular} executable, then you found a bug in @sc{Singular}, which we
     246ask you to report (see below).
     247@item
     248Check whether the directories containing the libraries and on-line help
     249files can be found by @sc{Singular}: If @code{$bindir} denotes the
     250directory where the @sc{Singular} executable resides, then @sc{Singular}
     251looks for library files as follows:   
     252@* (0) the current directory     
     253@* (1) all dirs of the environment variable SINGULARPATH
     254@* (2) @code{$bindir/LIB}
     255@* (3) @code{$bindir/../LIB}
     256@* (4) @code{/usr/local/Singular/@value{VERSION}/LIB}
     257@* (4) @code{/usr/local/Singular/LIB}
     258@* The on-line @code{info} files need to be at  @code{$bindir/../info} and the
     259@code{html} pages at @code{$bindir/../html}.
     260@end enumerate
     261
     262You can inspect the found library and @code{info}/@code{html}
     263directories by starting up @sc{Singular} with the
     264@code{--version} option, or by issuing the @sc{Singular} command
     265@code{system("--version");}.
     266
     267@item For @code{HPUX} systems:
     268@*The /etc/termcap files which are pre-installed on these systems are
     269broken which leads to messages like
     270@example
     271Name collision between 9826 9836
     272@end example
     273when @sc{Singular} is started. To fix this, you can get fixed termcap
     274files from @uref{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/utils}
     275by downloading the files termcap-<uname-description> and either
     276replace your /etc/termcap file by the file found there, or view, and
     277redo the respective changes by @code{diff}'ing the downloaded and the
     278original file.
     279
     280@item For @code{ix86-Linux} systems:
     281@*Due to some incompatibilities of shared libraries, the start-up of
     282@sc{Singular} might fail with messages like
     283@example
     284  Can not find shared library ...
     285@end example
     286To fix this, download and install
     287@code{Singular-@value{VERSION}-ix86-Linux-static.tgz}.
     288
     289@item For @code{AIX} systems:
     290@*The default @code{info} program of the system is not GNU's texinfo
     291browser which is used to display the on-line documentation in the
     292@code{info} format. Therefore, the distribution of the AIX executable
     293already contains the @code{info} browser program.
     294If you remove this program, make sure that the GNU
     295@code{info} program is executed if you call '@code{info}' from your shell.
     296
     297@item For any other troubles:
     298@*Please send an email to @email{singular@@mathematik.uni-kl.de}
     299and include the header which is displayed by starting up @sc{Singular}
     300with the @code{-v} option, and a description of your machine (issue the
     301command @code{uname -a} on your shell) in your report.
     302@end itemize
     303
     304
     305@heading More information about @sc{Singular}: Comments, Questions, Bug Reports
     306More and up-to-date information about @sc{Singular} is always available
     307from
     308@display
     309@uref{http://www.mathematik.uni-kl.de/~zca/Singular}
     310@end display
     311We very much welcome any comments, questions, and bug reports. Please
     312contact us at
     313@display
     314@email{singular@@mathematik.uni-kl.de}
     315@end display
     316
     317@ifclear singularmanual
     318GOOD LUCK and ENJOY!                         
     319Your @sc{Singular} team.
     320@end ifclear
     321
  • doc/Makefile.in

    r7736c5 r354f3b  
    22###
    33### Makefile for Singular documentation
    4 ### $Id: Makefile.in,v 1.43 1999-11-26 17:45:49 obachman Exp $
     4### $Id: Makefile.in,v 1.44 1999-11-29 12:56:07 obachman Exp $
    55#####################################################################
    66SHELL=/bin/sh
     
    3838TEXI2HTML       = @TEXI2HTML@
    3939DVIPS           = dvips
     40
    4041VERBOSE         = 1 # override this with make VERBOSE=2
    41 
     42SINGUNAME       = @SINGUNAME@
    4243# d2t stuff
    4344SINGULAR        = @SINGULAR@
     
    173174
    174175# targets which produce stand-alone documents
     176%.${SINGUNAME}.txt : %.texi
     177        ${MAKEINFO} -D UNAME --no-header --paragraph-indent none  -o $@ $<
     178
    175179%.txt :  %.texi
    176180        ${MAKEINFO} --no-header --paragraph-indent none -o $@ $<
     181
     182%.${SINGUNAME}.html : %.texi
     183        ${TEXI2HTML} -D UNAME -init_file t2h_standalone.init -verbose -split none -o $@ $<
    177184
    178185%.html : %.texi
     
    242249        ${MKINSTALLDIRS} ${install_docdir}
    243250        ${INSTALL_DATA} singular.idx ${install_docdir}
     251
     252install-bindist: INSTALL_unix.${SINGUNAME}.txt INSTALL_unix.${SINGUNAME}.html
     253        ${MKINSTALLDIRS} ${install_prefix}
     254        ${INSTALL_DATA} INSTALL_unix.${SINGUNAME}.txt ${install_prefix}/INSTALL
     255        ${INSTALL_DATA} INSTALL_unix.${SINGUNAME}.html ${install_prefix}/INSTALL.html
    244256
    245257texi2html = $(TEXI2HTML:%.pl=%)
     
    266278        /bin/rm -f ${HTML_SUBDIR}/${HTML_MANUAL_TOP} ${HTML_SUBDIR}/${HTML_TUTOR_TOP}
    267279        /bin/rm -rf ${STANDALONE_HTML_FILES} ${STANDALONE_FILES} ${STANDALONE_TXT_FILES}
     280        /bin/rm -f INSTALL_unix.${SINGUNAME}.txt INSTALL_unix.${SINGUNAME}.html
    268281
    269282distclean: clean
  • doc/doc2tex.pl

    r7736c5 r354f3b  
    11#!/usr/local/bin/perl
    2 # $Id: doc2tex.pl,v 1.19 1999-11-24 18:50:40 obachman Exp $
     2# $Id: doc2tex.pl,v 1.20 1999-11-29 12:56:07 obachman Exp $
    33###################################################################
    44#  Computer Algebra System SINGULAR
     
    163163{
    164164  $line++;
    165  
    166165  if (/^\@c\s*example/)     {&HandleExample; next;}
    167166  if (/^\@c\s*include\s+/)  {&HandleInclude; next;}
     
    177176  print TEX $_;
    178177
     178  if (! $printed_header && /^\@c/)
     179  {
     180    $printed_header = 1;
     181    print TEX <<EOT;
     182\@comment This file was generated by doc2tex.pl from $doc_file
     183\@comment DO NOT EDIT DIRECTLY, BUT EDIT $doc_file INSTEAD
     184EOT
     185  }
     186
    179187  if (/^\@bye$/)            {last;}
    180188}
     
    189197######################################################################
    190198# @c example [error] [no_comp]
    191 #    -> the text till the next @c example is feed into Singular,
     199#    -> the text till the next @c example is fed into Singular,
    192200#       the text is then substituted by
    193201#       @c computed example $ex_prefix $doc_file:$line
     
    265273  if ($reuse && $cache)
    266274  {
     275    my $ok = 1;
    267276    print "<$ex_prefix>" if ($verbose);
    268277    print TEX "\@c reused example $ex_prefix $doc_file:$lline \n";
    269278    open(INC, "<$inc_file") || Error("can't open $inc_file for reading: $!\n");
    270     while (<INC>){ print TEX $_;}
     279    while (<INC>)
     280    {
     281      if (/error occurred/ && $ok && !error_ok)
     282      {
     283        Warn("Result file $inc_file contains errors. Force re-computation by removing $inc_file");
     284        $ok = 0;
     285      }
     286      print TEX $_;
     287    }
    271288    close(INC);
    272289  }
     
    580597}
    581598
     599sub Warn
     600{
     601  print "$WARNING $_[0]\n";
     602}
    582603#
    583604# leave this here --otherwise fontification in my emacs gets screwd up
  • emacs/BUGS

    r7736c5 r354f3b  
    33  trotzdem sichtbar bleiben (->Fehlermeldungen)
    44o singular-cursor-key-model aus customize speichern hat nicht funktioniert
     5o loading file default coice/dir does not end with an "/"
    56o no key binding for 'comint-interrupt-subjob
    67  (i.e., for interrupting Singular), should be extra menu item
Note: See TracChangeset for help on using the changeset viewer.