|
Home > Archive > Unix Programming > January 2006 > libXt version
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| Hi all,
I am new to Unix programming. I have SunOS 5.8 box and I want
to know the libXt version installed. Please some body explain how
to get the version of currently installed libXt on solaris box.
Any command is available to get the version of libXt installed?
Thanks in advance,
Seema
| |
| Fred Kleinschmidt 2006-01-30, 5:56 pm |
|
"seema" <seema_coma@yahoo.co.in> wrote in message
news:1138626130.151570.179830@g44g2000cwa.googlegroups.com...
> Hi all,
>
> I am new to Unix programming. I have SunOS 5.8 box and I want
> to know the libXt version installed. Please some body explain how
> to get the version of currently installed libXt on solaris box.
> Any command is available to get the version of libXt installed?
>
> Thanks in advance,
> Seema
>
Type:
what /usr/include/libXt.a
--
Fred L. Kleinschmidt
Boeing Associate Technical Fellow
Technical Architect, Software Reuse Project
| |
| Chuck Dillon 2006-01-31, 7:21 pm |
| seema wrote:
> Hi all,
>
> I am new to Unix programming. I have SunOS 5.8 box and I want
> to know the libXt version installed. Please some body explain how
> to get the version of currently installed libXt on solaris box.
> Any command is available to get the version of libXt installed?
>
> Thanks in advance,
> Seema
>
prompt$ find /usr/lib -follow -name libXt\* | xargs -tn1 strings -a |
grep Version
The above should tell you what X11 version/rev the libraries found were
built against.
If you need to know the version of X11/Xt in your SDK look at the
version/revision info in X.h and IntrinsicP.h...
-- ced
--
Chuck Dillon
Senior Software Engineer
NimbleGen Systems Inc.
|
|
|
|
|