|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| build/ | H | 02-Mar-2010 | - | 582 | 562 |
| cfg/ | H | 03-May-2022 | - | 14,155 | 11,260 |
| data/ | H | 03-May-2022 | - | 19,046 | 14,758 |
| docs/ | H | 03-May-2022 | - | 3,130 | 1,886 |
| html/ | H | 03-May-2022 | - | 1,249 | 988 |
| man/ | H | 03-May-2022 | - | 3,030 | 2,473 |
| src/ | H | 03-May-2022 | - | 72,793 | 57,185 |
| test-code/ | H | 03-May-2022 | - | 1,124 | 883 |
| .hgsub | H A D | 02-Mar-2010 | 98 | 3 | 2 |
| .hgsubstate | H A D | 02-Mar-2010 | 110 | 3 | 2 |
| AUTHORS | H A D | 02-Mar-2010 | 92 | 4 | 3 |
| COPYING | H A D | 02-Mar-2010 | 542 | 12 | 9 |
| ChangeLog | H A D | 02-Mar-2010 | 14.8 KiB | 523 | 417 |
| HACKING | H A D | 02-Mar-2010 | 1.2 KiB | 32 | 21 |
| INSTALL | H A D | 02-Mar-2010 | 7.6 KiB | 183 | 143 |
| LICENSE.GPL | H A D | 02-Mar-2010 | 17.7 KiB | 340 | 281 |
| Makefile.am | H A D | 02-Mar-2010 | 1.8 KiB | 85 | 55 |
| Makefile.in | H A D | 03-May-2022 | 82.8 KiB | 1,576 | 1,308 |
| NEWS | H A D | 02-Mar-2010 | 871 | 33 | 25 |
| README | H A D | 02-Mar-2010 | 1.9 KiB | 46 | 32 |
| SoXt.pc.in | H A D | 02-Mar-2010 | 521 | 22 | 19 |
| TODO | H A D | 02-Mar-2010 | 0 | | |
| aclocal.m4 | H A D | 02-Mar-2010 | 268.3 KiB | 7,611 | 6,808 |
| configure | H A D | 02-Mar-2010 | 819.2 KiB | 26,248 | 20,587 |
| configure.ac | H A D | 02-Mar-2010 | 17.8 KiB | 551 | 437 |
| stamp-h.in | H A D | 02-Mar-2010 | 0 | | |
| tags | H A D | 02-Mar-2010 | 28.7 KiB | 275 | 274 |
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