Annotation of OpenXM/doc/OpenXM-web/ERRATA.html, Revision 1.10
1.1 takayama 1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2: <HTML>
3: <!--
1.10 ! takayama 4: $OpenXM: OpenXM/doc/OpenXM-web/ERRATA.html,v 1.9 2000/02/04 07:21:47 takayama Exp $
1.1 takayama 5: -->
6: <HEAD>
7: <LINK REV=MADE HREF="mailto:takayama@math.sci.kobe-u.ac.jp">
8: <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
9: <TITLE>ERRATA (20000124), OpenXM </TITLE>
10: </HEAD>
11: <BODY>
12:
1.7 takayama 13: <H1>ERRATA (20000124) (OpenXM) : IMPORTANT </H1>
1.2 takayama 14:
15: <OL>
16:
17: <LI> (OpenXM/doc/install-??.txt)
18: The line "source .cshrc" should be added at the last of .login
19: in some unix distributions.
1.6 takayama 20:
21: <LI> (OpenXM/doc/install-??.txt)
1.7 takayama 22: <PRE>
1.6 takayama 23: Wrong: source /xxx/yyy/OpenXM/rc/dot.bash
24: ===> Correct: source /xxx/yyy/OpenXM/rc/dot.bashrc
1.7 takayama 25: </PRE>
1.6 takayama 26:
27: <LI> (OpenXM/doc/install-??.txt)
1.7 takayama 28: <PRE>
1.6 takayama 29: Wrong: or read dot.bash or dot.cshrc file by the source command.
30: ===> Correct : or read dot.bashrc or dot.cshrc file by the source command.
1.7 takayama 31: </PRE>
32: <LI> (OpenXM/rc/cshrc, OpenXM/rc/bashrc, OpenXM/bin/gp)
33: <PRE>
34: Pari gp needs a shared library libpari.so.2.0.
35: So, LD_LIBRARY_PATH must be set properly to use "gp".
36: Append the following lines to OpenXM/rc/bashrc and
37: OpenXM/rc/cshrc respectively and type in "make" in OpenXM/rc to generate
38: dot.bashrc, dot.cshrc and openxm.
39: bashrc :
1.9 takayama 40: LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OpenXM_HOME/lib
1.7 takayama 41: export LD_LIBRARY_PATH
42: cshrc :
43: if ( ${?LD_LIBRARY_PATH} == 1) then
1.9 takayama 44: setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:$OpenXM_HOME/lib
1.7 takayama 45: else
1.9 takayama 46: setenv LD_LIBRARY_PATH $OpenXM_HOME/lib
1.7 takayama 47: endif
1.10 ! takayama 48: </PRE>
! 49:
! 50: <LI> (OpenXM/src/kxx/oxlog.c, on Solaris)
! 51: <PRE>
! 52: Wrong: in char *toFullPath(char *s)
! 53:
! 54: (I (Belse {
! 55: (I (B (I (B (I (Bs = which(s,getenv("PATH"));
! 56: (I (B (I (B }
! 57: }
! 58:
! 59: ===> Correct:(I (B
! 60:
! 61: (I (Belse {
! 62: (I (B (I (B (I (Bs = which(s,getenv("PATH"));
! 63: (I (B (I (B }
! 64: return(s); <==== Add this line.
! 65: }
1.7 takayama 66: </PRE>
1.6 takayama 67:
1.7 takayama 68:
69: </OL>
70:
71: <H1>ERRATA (20000124) (OpenXM) : Minor corrections </H1>
72:
73: <OL>
1.6 takayama 74:
1.2 takayama 75:
76: </OL>
77:
1.1 takayama 78:
79:
1.4 takayama 80:
1.1 takayama 81:
82: </BODY>
83: </HTML>
84:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>