[EMAIL PROTECTED] wrote:
> Since wx uses GTK on Unix...is there *any* way to tell that a
> Linux app was built with wx or GTK?  Will they always look
> EXACTLY the same?  (Does wx have any extra widgets/special sauce
> that would give it away?)

Surely there will be differences in the widget set (and appearances).

..but, assuming they are dynamically linked, the quickest answer might
be to look at the libraries referenced by application "appname":

ldd `which appname`

'course, you may have to hunt around for the actual binary if appname is
a script.

eg:
 ldd `which opera` gives 'not a dynamic executable'

You can try to interpret what the script is actually calling, or maybe
it's just quicker to look at what's running:

  ps -fc opera
then you can cut-n-paste
  ldd /usr/lib/opera/9.0-20060616.6/opera
..showing a dependance on (among a few other things) libqt-mt.so.3

..jim


-- 
[email protected]
http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list

Reply via email to