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