[BACK]Return to ERRATA.html CVS log [TXT][DIR] Up to [local] / OpenXM / doc / OpenXM-web

File: [local] / OpenXM / doc / OpenXM-web / ERRATA.html (download) (as text)

Revision 1.10, Thu Feb 10 01:18:53 2000 UTC (24 years, 3 months ago) by takayama
Branch: MAIN
Changes since 1.9: +19 -1 lines

kaikei is no longer used as a ftp server.
Bug info of oxlog.c in ERRATA.html.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<!--
$OpenXM: OpenXM/doc/OpenXM-web/ERRATA.html,v 1.10 2000/02/10 01:18:53 takayama Exp $
-->
<HEAD>
<LINK REV=MADE HREF="mailto:takayama@math.sci.kobe-u.ac.jp">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<TITLE>ERRATA (20000124), OpenXM </TITLE>
</HEAD>
<BODY>

<H1>ERRATA (20000124) (OpenXM) :  IMPORTANT </H1>

<OL>

<LI>  (OpenXM/doc/install-??.txt) 
      The line "source .cshrc" should be added at the last of .login
      in some unix distributions.

<LI>  (OpenXM/doc/install-??.txt) 
  <PRE>
      Wrong:  source /xxx/yyy/OpenXM/rc/dot.bash  
   ===> Correct: source /xxx/yyy/OpenXM/rc/dot.bashrc
  </PRE>

<LI>  (OpenXM/doc/install-??.txt) 
  <PRE>
   Wrong:  or read dot.bash or dot.cshrc file by the source command.
   ===> Correct :  or read dot.bashrc or dot.cshrc file by the source command.
  </PRE>
<LI>  (OpenXM/rc/cshrc, OpenXM/rc/bashrc, OpenXM/bin/gp)
  <PRE>
   Pari gp needs a shared library libpari.so.2.0.
   So, LD_LIBRARY_PATH must be set properly to use "gp".
   Append the following lines to OpenXM/rc/bashrc and
   OpenXM/rc/cshrc  respectively and type in "make" in OpenXM/rc to generate
   dot.bashrc, dot.cshrc and openxm.
   bashrc : 
     LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OpenXM_HOME/lib
     export LD_LIBRARY_PATH
   cshrc :
     if ( ${?LD_LIBRARY_PATH} == 1) then
        setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:$OpenXM_HOME/lib
     else
       setenv LD_LIBRARY_PATH $OpenXM_HOME/lib
     endif
  </PRE>

<LI>  (OpenXM/src/kxx/oxlog.c,  on Solaris)
  <PRE>
      Wrong:  in char *toFullPath(char *s)

             (I (Belse {
           (I (B (I (B (I (Bs = which(s,getenv("PATH"));
(I (B (I (B           }
            }

   ===> Correct:(I (B

             (I (Belse {
           (I (B (I (B (I (Bs = which(s,getenv("PATH"));
(I (B (I (B           }
              return(s);    <==== Add this line.
            }
  </PRE>


</OL>

<H1>ERRATA (20000124) (OpenXM) :  Minor corrections </H1>

<OL>


</OL>





</BODY>
</HTML>