• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build/H02-Mar-2010-582562

cfg/H03-May-2022-14,15511,260

data/H03-May-2022-19,04614,758

docs/H03-May-2022-3,1301,886

html/H03-May-2022-1,249988

man/H03-May-2022-3,0302,473

src/H03-May-2022-72,79357,185

test-code/H03-May-2022-1,124883

.hgsubH A D02-Mar-201098 32

.hgsubstateH A D02-Mar-2010110 32

AUTHORSH A D02-Mar-201092 43

COPYINGH A D02-Mar-2010542 129

ChangeLogH A D02-Mar-201014.8 KiB523417

HACKINGH A D02-Mar-20101.2 KiB3221

INSTALLH A D02-Mar-20107.6 KiB183143

LICENSE.GPLH A D02-Mar-201017.7 KiB340281

Makefile.amH A D02-Mar-20101.8 KiB8555

Makefile.inH A D03-May-202282.8 KiB1,5761,308

NEWSH A D02-Mar-2010871 3325

READMEH A D02-Mar-20101.9 KiB4632

SoXt.pc.inH A D02-Mar-2010521 2219

TODOH A D02-Mar-20100

aclocal.m4H A D02-Mar-2010268.3 KiB7,6116,808

configureH A D02-Mar-2010819.2 KiB26,24820,587

configure.acH A D02-Mar-201017.8 KiB551437

stamp-h.inH A D02-Mar-20100

tagsH A D02-Mar-201028.7 KiB275274

README

1README
2======
3
4SoXt is an alternative to SGIs InventorXt library, which is a GUI binding
5for using Open Inventor with Xt/Motif.  While SoXt has been developed for
6use with Coin, it is also possible to compile it against Open Inventor
7from SGI or TGS.  A goal is to eventually become 100% source code
8compatible with the InventorXt library, which is still way off, especially
9when it comes to creating derived classes.
10
11
12INSTALLATION
13============
14
15Installing SoXt is a matter of running the configure script with the right
16options, getting it to pass all its tests, and run "make install" afterwards.
17These two phases has each a set of common problems which will be gathered
18and described below.
19
20
21The Configure Phase (running SoXt/configure)
22--------------------------------------------
23
24The file INSTALL contains generic information about running the configure
25script.  It's a good idea to have read that file one time or another, but
26it's the same file as in every other autoconf-based project and this one
27contains no extra information.  Anyways, here are some common problems:
28
29* configure immediately tells you it can't find the source files
30
31  My guess is that you are trying to run configure from a separate build
32  directory, and you have started SoXt/configure with a relative pathname
33  that traverses some symbolic link.  Configure doesn't handle that, so
34  you can either cd into your build directory using the hard path, or you
35  can use the absolute pathname for SoXt/configure
36
37* configure doesn't find Coin (or coin-config)
38
39  To detect Coin, configure looks for the script called coin-config, which
40  is installed in bin/ where you installed Coin.  You do probably not have
41  that bin-directory in your PATH variable, so configure won't find where
42  it is.  The solution is to either add {Coin-prefix}/bin to $PATH, or you
43  can run SoXt/configure with the "--with-coin={Coin-prefix}" option.
44
45
46