1Until the release bits the following was true:
2
3    Until such time as Rick Jones can figure-out or be told how to make it
4    automagic in the configure script, prior to configure on solaris, you
5    may need:
6
7    CFLAGS="-lsocket -lnsl -lkstat"
8
9    and if you are trying to compile the SCTP tests:
10
11    CFLAGS="-lxnet -lsocket -lnsl -lkstat -D_XOPEN_SOURCE=500 -D__EXTENSIONS__"
12
13as the release bits have a "smarter" configure script, and the SCTP
14tests use libsctp, the above no longer applies.  It should all just be
15automagic (although for SCTP you still must --enable-sctp at configure
16time)
17
18Beware CPU util figures on anything before Solaris 10 that does not
19say 100%, and still be a triffle cautious with Solaris 10 CPU util
20reports.  The CPU time accounting mechanisms either do not track time
21spent servicing interrupts, or do so in parallel with time spent in
22user/kernel/idle which means that some idle time isn't _really_ idle
23time.
24
25And beyond that, it is still not clear if the CPU utilization reported
26on systems with hardware threading support (eg UltraSPARC-T1) is
27really accurate even ignoring the issue with interrupt time.  It is
28likely that to be truely accurate, it is necessary to know how much
29"real work" any one strand performed.
30