Update of /cvsroot/aimmath/AIM/WEB-INF/maple
In directory sc8-pr-cvs1:/tmp/cvs-serv2602
Modified Files:
Tag: develop_2_1
AutoConf.mpl
Log Message:
Configuration of TtH set to search where it used to as well as the new
possible place. - GG
Index: AutoConf.mpl
===================================================================
RCS file: /cvsroot/aimmath/AIM/WEB-INF/maple/AutoConf.mpl,v
retrieving revision 1.1.1.1.2.6
retrieving revision 1.1.1.1.2.7
diff -C2 -d -r1.1.1.1.2.6 -r1.1.1.1.2.7
*** AutoConf.mpl 17 Jul 2003 05:29:37 -0000 1.1.1.1.2.6
--- AutoConf.mpl 17 Jul 2003 06:11:56 -0000 1.1.1.1.2.7
***************
*** 714,724 ****
# Look for TtH
-
if os_os = "Linux" then
! Config['TtHProgram'] := cat(Config['WebAppDir'],"/bin/tth_exe/tth"):
else
! Config['TtHProgram'] := cat(Config['WebAppDir'],"\\bin\\tth_exe\\tth.exe"):
fi:
-
p("\n"):
--- 714,742 ----
# Look for TtH
if os_os = "Linux" then
! Config['TtHProgram'] :=
! look_for_prog(
! "TtH",
! "Conf" = 'TtHProgram',
! "Path" = "tth",
! "Def" = "/usr/local/bin/tth",
! "Def" = "/usr/bin/tth",
! "Def" = "/bin/tth",
! "Def" = cat(Config['WebAppDir'],"/bin/tth_exe/tth"),
! "Check" = ["-r < tthtest.tex","TtH is OK"]
! ):
else
! Config['TtHProgram'] :=
! os_osname(look_for_prog(
! "TtH",
! "Conf" = 'TtHProgram',
! "Path" = "tth.exe",
! "Def" = "C:\\TtH\\tth.exe",
! "Def" = "C:\\Program Files\\tth.exe",
! "Def" = "C:\\Program Files\\TtH\\tth.exe",
! "Def" = cat(Config['WebAppDir'],"\\bin\\tth_exe\\tth.exe"),
! "Check" = ["-r < tthtest.tex","TtH is OK"]
! )):
fi:
p("\n"):
|