Solaris Tips


あまり使わないけど、Solarisでのインストールおよび覚え書き&メモ。ただしメモが途中で紛失しているので、資料価値ゼロです。


Xaw3dのインストール

gvをインストールするには、Xaw3dが必要らしい。使用したアーカイブは「Xaw3d-1.5.tar.gz」。
ccを使ってコンパイル&openwin環境では、若干コツがいる。

# cd ../
# tar xvzf Xaw3d-1.5.tar.gz
# cd xc/lib/Xaw3d/
# xmkmf
# make Makefile
# env INCLUDES=-l. make depend
envを付けるのは、そのままだと、きちんとincludeファイルを読まないからです。
# env INCLUDES=-l. make 
と、恐らくこのままやってもopenwin環境だけだと、ExtAgent.hがないと言われてコンパイルできないです。
X11がインストールされていればExtAgent.hがありコンパイルできるようですが、このためだけにインストールするのも、
面倒なので、このファイルだけどっかから拝借します。
 
/* $XConsortium: ExtAgent.h,v 1.1 94/04/02 15:04:08 kaleb Exp $ */

/*

Copyright (c) 1994  X Consortium

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of the X Consortium shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from the X Consortium.

*/

#include <X11/Xfuncproto.h>

_XFUNCPROTOBEGIN

extern void
XmuRegisterExternalAgent(
#if NeedFunctionPrototypes
    Widget /* w */,
    XtPointer /* data */,
    XEvent* /* event */,
    Boolean* /* cont */
#endif
);

_XFUNCPROTOEND
 
これを、/usr/openwin/include/X11/Xmu/ExtAgent.hという名前でコピー。
# env INCLUDES=-l. make 
# make install
どういうわけか、includeファイルを、/usr/openwin/include/X11/X11というディレクトリにコピーするので、一番簡単な方法で逃げる。
# cd /usr/openwin/include/X11
# mv X11 Xaw3d
以上。

gvのインストール

Xaw3Dがインストールされていればとっても簡単。ccでちゃんとコンパイルできます。

# xmkmf
# make Makefile
# cd source/
# xmkmf
# make Makefile
# cd ../doc/
# xmkmf
# make Makefile
# cd ../
# make
# make install install.man install.doc

以上。