Annotation of OpenXM/doc/install.oxweave, Revision 1.25
1.25 ! takayama 1: %% $OpenXM: OpenXM/doc/install.oxweave,v 1.24 2000/03/11 08:07:16 takayama Exp $
1.1 takayama 2: OpenXM/doc/install.oxweave
3:
1.6 takayama 4: /*&C
5: OpenXM URL : http://www.math.kobe-u.ac.jp/OpenXM
1.16 takayama 6: Consult firstly the ERRATA section for your release on this web cite
7: for troubles.
1.6 takayama 8:
9: OpenXM package : Getting started.
10:
11: */
1.1 takayama 12: /*&jp
1.23 takayama 13: ★ OpenXM GENERIC パッケージの利用方法
1.6 takayama 14: この節では, OpenXM package binary distribution のインストール法を説明します.
15: インストールに必要なシステムの仕様については, 動作環境を御覧ください.
1.1 takayama 16: */
17: /*&eg
1.23 takayama 18: ***** HOW TO INSTALL OpenXM GENERIC PACKAGE?
1.6 takayama 19: In this section, we will explain how to install OpenXM package binary
20: distribution.
21: As to the required environment, see the section "System Requirement"
22: */
23: /*&jp
24:
25: (1) Tar ボールより次のようにしてディレクトリ OpenXM を取り出します.
1.13 takayama 26: OpenXM はどこにおいてもかまいません. ルートになってインストール
27: する必要もありません.
28: できれば, /usr/local/OpenXM においてほしいと思います.
1.6 takayama 29:
1.1 takayama 30: */
1.6 takayama 31: /*&eg
1.1 takayama 32:
1.6 takayama 33: (1) Extract the directory OpenXM from the tar ball.
34: You can put the directory OpenXM at any place in the file system.
1.13 takayama 35: You do not need to be a root to install it.
36: We are happy if you put OpenXM at /usr/local/OpenXM
1.2 takayama 37:
38: */
1.6 takayama 39: /*&C
1.24 takayama 40:
41: tar xzvf OpenXM-shared.tgz
1.6 takayama 42: tar xzvf OpenXM-binary-OPERATING_SYSTEM_CPU_TYPE.tgz
43:
1.2 takayama 44: */
1.6 takayama 45: /*&jp
46: 以下 (1) で生成されたディレクトリ OpenXM の絶対パスを /xxx/yyy/OpenXM
47: と書きます.
48:
1.1 takayama 49: */
1.6 takayama 50: /*&eg
51: In the sequel, we will denote the absolute path of the directory OpenXM
52: by /xxx/yyy/OpenXM.
1.1 takayama 53:
54: */
55: /*&jp
1.23 takayama 56: (2) OpenXM/rc/dot.cshrc, OpenXM/rc/dot.bashrc,
57: OpenXM/rc/openxm, OpenXM/rc/asir, OpenXM/rc/oxmath, 等の
58: ファイルを自動生成します.
59: openxm, asir, oxmath などは OpenXM クライアントを起動するための
60: シエルスクリプトです. これらを /usr/local/bin にインストールするには
61: 次のように入力します.
1.6 takayama 62:
1.5 takayama 63: */
64: /*&eg
1.19 takayama 65: (2) Generate OpenXM/rc/dot.cshrc, OpenXM/rc/dot.bashrc and
1.23 takayama 66: OpenXM/rc/openxm, OpenXM/rc/asir, OpenXM/rc/oxmath, ...
67: The files openxm, asir, oxmath are shell scripts to invoke OpenXM clients.
68: If you want to install these shell scripts to /usr/local/bin,
69: type in as follows.
1.6 takayama 70:
1.5 takayama 71: */
1.6 takayama 72: /*&C
73:
1.8 takayama 74: cd /xxx/yyy/OpenXM/rc
1.23 takayama 75: make install
1.5 takayama 76:
77: */
78: /*&jp
1.23 takayama 79:
80: /usr/local/bin でなく, home directory の bin にインストールしたい
81: ときは, 次のように入力してください.
82:
83: */
84: /*&eg
85:
86: If you want to install them under the bin of your home directory,
87: type in as follows.
88:
89: */
90: /*&C
91:
92: cd /xxx/yyy/OpenXM/rc
93: make install PREFIX=$HOME/bin
94:
95: */
96: /*&C
97:
98: [Note] If you are Solaris user, you might have to type in like
99: /usr/ccs/bin/make install PREFIX=$HOME/bin
100:
101: */
102: /*&jp
103:
104: OpenXM/bin の下のファイルを直接実行したい場合は, 以下の設定が必要です.
105: OpenXM clients を実行するだけの場合は, (3), (3') は skip してください.
106:
1.6 takayama 107: (3) csh を利用してる場合, 次の行を ~/.cshrc の最後に加えます.
108:
1.1 takayama 109: */
110: /*&eg
1.23 takayama 111:
112: If you want to execute binaries under OpenXM/bin, you need to perform
113: (3) and (3').
114: If you use only OpenXM clients, skip (3) and (3').
115:
1.6 takayama 116: (3) Append the following line to the end of ~/.cshrc when you are
117: using csh as your shell.
118:
1.1 takayama 119: */
120: /*&C
1.2 takayama 121:
1.6 takayama 122: source /xxx/yyy/OpenXM/rc/dot.cshrc
1.2 takayama 123:
1.1 takayama 124: */
125: /*&jp
1.6 takayama 126: (3') bash を利用してる場合, 次の行を ~/.bashrc の最後に加えます.
127:
1.1 takayama 128: */
129: /*&eg
1.6 takayama 130: (3') Append the following line to the end of ~/.bashrc when you are
131: using bash as your shell.
132:
133: */
134: /*&C
135:
1.18 takayama 136: source /xxx/yyy/OpenXM/rc/dot.bashrc
1.6 takayama 137:
1.1 takayama 138: */
1.14 takayama 139:
140: /*&jp
141:
142: (3) または (3') を終了したら, いったん logout して login しなおすか
1.18 takayama 143: または, source コマンドで, dot.bashrc または dot.csh を読み込んで下さい.
1.14 takayama 144:
145: */
146: /*&eg
147:
148: After finishing the step (3) or (3'), logout and login again,
1.18 takayama 149: or read dot.bashrc or dot.cshrc file by the source command.
1.14 takayama 150:
151: */
152:
1.6 takayama 153:
1.2 takayama 154: //&C
1.13 takayama 155: //&jp (4) asir の利用には key が必要です.
156: //&eg (4) You need a key to use asir.
1.2 takayama 157: //&C
1.13 takayama 158: /*&jp
159: asir の起動時のメッセージまたは OpenXM/lib/asir/asir_key を
160: 参照して, key を取得して下さい (数秒しかかかりません).
161:
1.23 takayama 162: Mail の利用ができて, /var/mail の下にメールを着信できれば,
163: /xxx/yyy/OpenXM/rc/fetch_asir_key
164: を実行することにより asir_key を自動で設定できます.
165:
1.13 takayama 166: */
167: /*&eg
168: Please get the key by following the instruction from asir itself or
169: that in OpenXM/lib/asir/asir_key (it takes only a few seconds
170: to get the key).
1.23 takayama 171:
172: If you can get your mails under /var/mail, you can automatically set
173: your key by executing
174: /xxx/yyy/OpenXM/rc/fetch_asir_key
1.13 takayama 175:
176: */
1.6 takayama 177:
178: /*&C
1.8 takayama 179:
180: ***** QUALITY:
1.25 ! takayama 181: Experimental:
1.6 takayama 182: OpenXM/bin/k0, OpenXM/bin/d0
1.25 ! takayama 183: Asir client functions: m_* (Mathematica) , om_* (OpenMath)
! 184: 70%
1.6 takayama 185: OpenXM/bin/ox_math, OpenXM/bin/math2ox
1.25 ! takayama 186: Asir client functions: om_* (OpenMath)
1.6 takayama 187: OpenXM/lib/java-support/ *
1.11 takayama 188: OpenXM/bin/sm1, ox_sm1 on Linux libc6.
1.6 takayama 189: */
190: /*&C
191:
192:
1.8 takayama 193: */
194: /*&jp
195: ★ Java に関する注意:
196: 注意 1.
197: OpenMath 用の OMproxy には現在のところ, jdk が必要です.
198: たとえば bash を利用している場合, .bashrc で
199: PATH=/usr/local/jdk1.1.8/bin:$PATH
200: export PATH
1.10 takayama 201: などとして, jdk の java, javac をサーチパスの先のほうへもっていくようにして
1.8 takayama 202: ください.
1.10 takayama 203: csh を利用している場合, .cshrc で
204: set path=(/usr/local/jdk1.1.8/bin $path)
205: として, jdk の java, javac をサーチパスにいれます.
1.17 takayama 206:
207: 注意:
208: なお, Kaffe 1.0.b4 の java は, class BigInteger に method
209: toByteArray が含まれてないため, OpenMath モジュールでは使用できません.
1.8 takayama 210: */
211: /*&eg
212: ***** JAVA
213: In order to use OMproxy, asir client om_*,
214: you need to install JDK.
215: The bin dir of the JDK must be in yur search path.
216: For example, you need to add the following line
1.10 takayama 217: to your .chsrc when your shell is csh
1.8 takayama 218: set path=(/usr/local/jdk1.1.8/bin $path)
1.10 takayama 219: Bash users put the following line to .bashrc
220: PATH=/usr/local/jdk1.1.8/bin:$PATH
221: export PATH
1.17 takayama 222:
223: Remark:
224: The Java interpreter of Kaffe 1.0.b4 does not contain the method
225: toByteArray in the class BigInteger.
226: So, it cannot be used for the OpenMath module.
1.8 takayama 227: */
228:
229: /*&C
230:
231:
1.6 takayama 232:
233:
234: */
235: /*&jp
236: ★ 動作環境
237:
238: */
239: /*&eg
1.7 takayama 240: ***** SYSTEM REQUIREMENTS
1.6 takayama 241:
242: */
243: /*&C
244:
1.11 takayama 245: OS: FreeBSD 3.3 (Intel CPU),
246: Linux systems (Intel CPU):
1.15 takayama 247: Most Linux with libc5 and with libc6 (glibc 2.x).
1.7 takayama 248:
249: X window system is required.
250:
251: Most part of the OpenXM package may work on other versions of
1.11 takayama 252: FreeBSD 3.x and Linux, but we have not yet tested.
1.6 takayama 253:
254: */
255: /*&jp
1.8 takayama 256: 次の modules は, OS の標準 distribution 以外に, さらに下に記したソフトを
1.6 takayama 257: 必要とします.
258: */
259: /*&eg
260: The following modules require the listed softwares other than the standard
261: OS package.
262: */
263: /*&C
264:
265: (1) OpenXM/bin/ox_math : Mathematica Version 3.x or 4.x
266: (Mathematica server) at /usr/local/Mathematica
267: OpenXM/bin/math2ox [ see http://www.wolfram.com ]
268: Asir client functions m_*
269: (2) OpenXM/lib/java-support : JDK at /usr/local/jdk??
1.8 takayama 270: [ see the section on JAVA]
1.6 takayama 271: Asir client functions om_*
272: sm1 client functions om_*
1.7 takayama 273: (3) PHC pack (OpenXM/bin/phc) and asir client functions
274: phc_* run only on linux (glib5).
1.8 takayama 275: If you install the linux emulation^{note 1} on Free BSD, they run on
276: FreeBSD, too.
277: <note 1>
278: Add linux_enable="YES" in /etc/rc.conf
279: You need the following packages:
280: pkg_info | grep linu
281: linux_base-5.2 The base set of packages needed in Linux mode
282: linux_devtools-5.2 Packages needed for doing development in Linux mode
1.6 takayama 283:
284: */
285:
286:
1.1 takayama 287: /*&jp
1.7 takayama 288: 日本語版の注意.
1.3 maekawa 289: 注意 1.
290: asir で日本語のヘルプを利用するには,
1.1 takayama 291: PAGER=jless
292: export PAGER
1.3 maekawa 293: などで, 日本語を扱える PAGER を指定する必要があるかもしれません.
1.1 takayama 294: */
1.7 takayama 295:
296: /*&eg
297:
1.8 takayama 298: The installation is completed.
1.7 takayama 299:
300: */
301: /*&jp
302:
303: 以上.
304:
305: */
306:
1.1 takayama 307: /*&jp
1.7 takayama 308: ★ 文書
309:
310: OpenXM パッケージでもっとも充実しているクライアントは,
311: asir です.
312: asir のつかいかたは
313: OpenXM/doc/asir2000/man-jp.dvi
314: または OpenXM/doc/asir2000/html-jp の HTML ファイルを見て下さい.
315: asir 用 OpenXM クライアントライブラリのつかい方は,
316: OpenXM/doc/asir-contrib/cman-jp.dvi
317: を見て下さい. dvi の付くファイルは xdvi で見ることができます.
318:
319: OpenXM の設計の概要については,
320: OpenXM/doc/issac2000/issac2000.ps
321: を見て下さい.
322: ps の付くファイルは, ghostview で見ることができます.
323:
1.25 ! takayama 324: Mathematica client については, OpenXM/doc/ox_math を御覧ください.
! 325: sm1 client については, OpenXM/doc/kan96xx を御覧ください.
! 326: asir は, 多項式処理用のライブラリとしてリンクできます.
! 327: これについては, OpenXM/doc/oxlib を御覧ください.
! 328:
! 329: OpenXM 対応の, サーバ を作成するには, OpenXM/src/ox_toolkit
! 330: が参考になるかもしれません. Java のクラスについては
! 331: OpenXM/src/OpenMath が参考になるかもしれません.
! 332:
1.7 takayama 333: */
334: /*&eg
335: ***** DOCUMENTS
336:
337: The best OpenXM client in the OpenXM package is now
338: asir.
339: Documents on asir are
340: OpenXM/doc/asir2000/man-eg.dvi
341: OpenXM/doc/asir2000/html-eg (HTML)
342:
343: The file
344: OpenXM/doc/asir-contrib/cman-eg.dvi
345: is a document on OpenXM client libraries for asir.
1.1 takayama 346:
1.7 takayama 347: The design outline is described in
348: OpenXM/doc/issac2000/issac2000.ps
349:
350: Dvi files can be previewed by xdvi and
351: ps files can be previewed by ghostview.
1.25 ! takayama 352:
! 353: As to Mathematica client, see OpenXM/doc/ox_math.
! 354: As to sm1 client, see OpenXM/doc/kan96xx.
! 355: The asir can be used as a C library for polynomial manupulation.
! 356: See OpenXM/doc/oxlib.
! 357:
! 358: If you are interested in writing a server for OpenXM, please refer to
! 359: OpenXM/src/ox_toolkit and OpenXM/src/OpenMath.
! 360:
1.7 takayama 361: */
1.1 takayama 362:
363:
1.8 takayama 364: /*&eg
365:
366:
367: ***** A QUICK TOUR OF OPENXM BY ASIR
368:
369: */
1.7 takayama 370: /*&jp
1.1 takayama 371:
372:
1.8 takayama 373: ★ ASIR による使用例
1.1 takayama 374:
375:
1.3 maekawa 376: asir を動作させるには, key が必要です.
1.8 takayama 377: OpenXM/lib/asir/asir_key のコメントまたは起動時のメッセージをみて,
378: key を E-mail でとりよせて下さい.
1.1 takayama 379:
1.8 takayama 380: */
381: /*&C
382: ---------------- Call ox_sm1 from asir.
383: bash-2.03$ asir
384: This is Risa/Asir, Version 20000120.
385: Copyright (C) FUJITSU LABORATORIES LIMITED.
386: 1994-1999. All rights reserved.
387: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
388: [269] sm1_genericAnn([x^3-y^2,[s,x,y]]);
389: /* The annihilating ideal of (x^3-y^2)^s */
390: [-2*y*dx-3*x^2*dy,2*x*dx+3*y*dy-6*s]
391:
392:
393: --------------- Call gnuplot from asir.
394: bash-2.03$ asir
395: This is Risa/Asir, Version 20000120.
396: Copyright (C) FUJITSU LABORATORIES LIMITED.
397: 1994-1999. All rights reserved.
398: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
399: [269] gnuplot("plot sin(x);");
400: 0
401: [270]
1.13 takayama 402:
403: */
404:
405: /*&jp
406:
407: ★ sm1 クライアントの利用例
408:
409: */
410: /*&eg
411:
412: ****** Example of the use of sm1 client
1.1 takayama 413:
1.8 takayama 414: */
1.1 takayama 415:
1.8 takayama 416: /*&C
417: -------------------------------------- call ox_asir from sm1
1.1 takayama 418: sm1
419: (oxasir.sm1) run ;
1.8 takayama 420: [(x^20-y^20) (x,y)] fctr pmat ; factorize x^20-y^20 by call ox_asir
1.1 takayama 421:
422:
1.8 takayama 423: */
1.1 takayama 424:
1.8 takayama 425: /*&jp
1.5 takayama 426: [著作権表示]
427: OpenXM/Copyright を御覧ください.
1.6 takayama 428: */
1.8 takayama 429: /*&eg
430: [COPYRIGHT]
431: See OpenXM/Copyright.
432: */
433:
434: /*&eg
435:
1.6 takayama 436:
1.7 takayama 437:
1.8 takayama 438: ***** TO COMPILE FROM A SOURCE *****
1.7 takayama 439:
440: */
1.6 takayama 441: /*&jp
1.8 takayama 442:
443:
1.6 takayama 444: ★ OpenXM パッケージの Make 法
445: FreeBSD 2.2.8, FreeBSD 3.3, Linux で動作するものと期待してます.
1.8 takayama 446: Linux glib6 では, いまのところ, /usr/include/features.h
1.20 takayama 447: で #define __FAVOR_BSD 1 してコンパイルする必要がありしたが,
448: 一部のソースを
449: -D_BSD_SOURCE option をつけて gcc でコンパイルするように変えてます
450: (setjmp と sigsetjmp の問題, dirty trick).
1.8 takayama 451:
1.6 takayama 452: OpenXM, OpenXM_contrib, OpenXM_contrib2 が必要です.
453: cvs コミッタの場合次のようにしてソースをとりよせます.
454: */
455: /*&eg
456: * How to make OpenXM package?
457: We have tested the OpenXM package on FreeBSD 2.2.8, FreeBSD 3.3, Linux.
1.20 takayama 458: On Linux glib6, we needed to define
1.8 takayama 459: #define __FAVOR_BSD 1
1.20 takayama 460: in /usr/include/features.h,
461: but now we are compiling some sources with -D_BSD_SOURCE
462: (setjmp vs sigsetjmp).
1.8 takayama 463:
1.6 takayama 464: Do you have directories OpenXM, OpenXM_contrib, OpenXM_contrib2?
465: If you are a CVS committer, then you can get all sources as follows:
466: */
467: //&C rcvs checkout OpenXM OpenXM_contrib OpenXM_contrib2
468: //&C
469: //&jp これらがそろっていたらあとは次のように入力するだけです.
470: //&eg Check that you have these directories, then just type in the following commands
471: /*&C
472:
473: cd OpenXM/src
474: make configure
475: make
476: make install
477:
478: */
479: /*&jp なお, OpenXM/src/ox_math のコンパイルおよび利用には Mathematica が,
480: OpenXM/src/OpenMath のコンパイルおよび利用には
481: には, jdk (java 環境) が必要です.
1.12 takayama 482:
483: Documents を生成するには, tex, ptex (ascii 日本語 tex), dvips, texinfo,
484: texi2html, nkf,
485: が必要です. 詳しくは Makefiles を見て下さい.
486: Document は, binary distribution の OpenXM/doc, OpenXM/lib
487: より得るのが簡単です.
1.6 takayama 488: */
489: /*&eg In order to use and compile OpenXM/src/ox_math, you need Mathematica.
490: In order to use and compile OpenXM/src/OpenMath,
491: you need jdk (java environment).
1.12 takayama 492:
493: In order to generate the full documentation including Japanese documents,
494: you need tex, ptex (ASCII Inc. Japanese tex), dvips, texinfo, texi2html,
495: nkf. See each Makefile.
496: The generated documents are in OpenXM/doc and OpenXM/lib
497: in the binary distribution.
1.15 takayama 498: If you do not like to install Japanese environment such as ptex,
499: type in R for the tex error prompt ? or
500: prepare empty shell scripts ptex and nkf.
1.6 takayama 501: */
502: /*&C
1.9 takayama 503:
504: */
505: /*&jp
506:
507: OpenXM_contrib2/asir2000 の配布を受けてない場合 (ソースライセンスを
508: 富士通より受ける必要があります),
509: OpenXM/src/Makefile の各モジュール名 たとえば
510: make all-kan96xx
511: などと各モジュール名を指定してコンパイルして下さい.
512:
1.22 takayama 513: または
514: OpenXM/src/asir2000 の Makefile を Makefile.forSkip に置き換えて
515: 下さい.
516:
1.9 takayama 517: */
518: /*&eg
519:
520: If you cannot get a source liscence of OpenXM_contrib2/asir2000
521: from Fujitsu labs,
522: compile each modules independently, e.g.,
523: make all-kan96xx
1.22 takayama 524:
525: Or, replace Makefile by Makefile.forSkip in OpenXM/src/asir2000.
1.1 takayama 526:
1.6 takayama 527: */
1.1 takayama 528:
1.6 takayama 529: /*&jp
1.1 takayama 530:
1.8 takayama 531: [OpenXM 下のファイルの構成メモ]
1.3 maekawa 532: lib/asir には, asir のライブラリ, ox_asir 本体
533:
1.8 takayama 534: cd OpenXM/src/kxx ; make install-for-debug した場合,
1.3 maekawa 535: lib/sm1 は src/SSkan/Doc への symbolic link
536: であり, sm1 のライブラリファイルが格納されています.
537: lib/sm1/bin には, binaryfiles
1.1 takayama 538: sm1, ox_sm1, ox, ox_log, ox_sm1_*
1.3 maekawa 539: へのシンボリックリンクが格納されます.
1.8 takayama 540: このシンボリックリンクは src/kxx で make install-for-debug を実行することにより
1.3 maekawa 541: 作成されます.
1.1 takayama 542:
1.3 maekawa 543: sm1 が ox_asir を利用するのに必要なファイル.
1.1 takayama 544: lib/asir/ox_asir,
545: lib/sm1/bin/ox, lib/sm1/bin/ox_log (src/kxx/ox, src/kxx/ox_log)
546: lib/sm1/ox.sm1, lib/sm1/oxasir.sm1
547:
1.3 maekawa 548: asir が ox_sm1_forAsir を利用するのに必要なファイル:
1.1 takayama 549: lib/asir/ox_launch
1.3 maekawa 550: lib/sm1/bin/ox_sm1_forAsir (ox_sm1 へのリンク)
1.1 takayama 551: lib/asir/xm
1.3 maekawa 552: lib/sm1/ 以下の *.sm1 なるすべての ライブラリファイル.
1.1 takayama 553: callsm1.sm1 callsm1b.sm1
1.3 maekawa 554: (ox_sm1_forAsir の定義ファイル, src/kxx/oxserver00.c
555: ox_sm1 が ox_sm1_forAsir という名前で呼ばれるとこれらのファイルをロード.)
1.1 takayama 556:
1.3 maekawa 557: asir が ox_sm1_gnuplot を利用するのに必要なファイル:
1.1 takayama 558: lib/asir/ox_launch
1.3 maekawa 559: lib/sm1/bin/ox_sm1_gnuplot (ox_sm1 へのリンク, ox_sm1_gnuplot は fork して
1.4 maekawa 560: gnuplot4ox を実行します.)
1.1 takayama 561: lib/asir/xm
562: lib/sm1/callsm1.sm1, lib/sm1/gnuplot.sm1
1.3 maekawa 563: (ox_sm1_gnuplot の定義ファイル, src/kxx/oxserver00.c
564: ox_sm1 が ox_sm1_gnuplot という名前で呼ばれるとこれらのファイルをロード.)
1.4 maekawa 565: bin/gnuplot4ox, bin/gnuplot_x11 (gnuplot 本体, src/gnuplot*)
1.1 takayama 566:
567: ----------------------------------------
1.3 maekawa 568: [開発者用メモ]
1.1 takayama 569:
1.3 maekawa 570: << sm1, ox_sm1, ox, oxlog の debug >>
571: binary file は各 directory の make install により
572: OpenXM/bin にコピーされますが,
573: debug 用にいちいちコピーするのは面倒なので,
1.8 takayama 574: OpenXM/src/kan96xx で make install-for-debug
575: OpenXM/src/kxx で make install-for-debug
1.3 maekawa 576: を実行すると,
577: OpenXM/bin/sm1, ox, ox_sm1, oxlog より,
1.1 takayama 578: OpenXM/src/kan96xx/Kan/sm1
579: OpenXM/src/kxx/ox, OpenXM/src/kxx/ox_sm1, OpenXM/src/kxx/oxlog
1.3 maekawa 580: へのシンボリックリンクが作成されます.
1.1 takayama 581:
1.3 maekawa 582: [CVSコミッタ用メモ]
583: << OpenXM ディレクトリ配布版の作成方法 >>
1.1 takayama 584: rcvs export -rHEAD OpenXM
585: rcvs export -rHEAD OpenXM_contrib
586: rcvs export -rHEAD OpenXM_contrib2
1.21 takayama 587: cd OpenXM/src ; make generate-source-distribution
1.3 maekawa 588: して, OpenXM, OpenXM_contrib, OpenXM_contrib2 全体を tar+gzip.
1.7 takayama 589: */
590:
591: /*&C
592:
593: */
594: /*&jp
595:
596: ★ Solaris に関する注意.
597: Solaris ではまだ問題が山積してます.
598: Solaris での make の問題点については, OpenXM/doc/OpenXM-FAQ-jp.txt
599: を見てください.
1.8 takayama 600: Solaris でコンパイルするには, /usr/ccs/bin をサーチパスの最初へもっていって
601: おきます.
1.7 takayama 602:
603: */
1.8 takayama 604: /*&eg
605: ***** COMPILE ON SOLARIS
606: There are a lot of troubles on Solaris for now.
607: At least,
608: /usr/ccs/bin must be at the top of the command search path to compile
609: on Solaris.
610: */
611:
1.7 takayama 612:
613: /*&C
614:
1.1 takayama 615: */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>