[pygtk] Installing pygtk on Solaris

2008-07-09 Thread Shalom Kramer
I am trying to install PyGTK on Solaris 8. When I run: $ ./configure I get - checking for GLIB - version = 2.2.0... no *** Could not run GLIB test program, checking why... *** The test program failed to compile or link. See the file config.log for the *** exact error that occurred . This usually

Re: [pygtk] Installing PyGTK on solaris 8

2007-11-28 Thread Shalom Kramer
Yes, the file indicates that there is a problem with compiling GTK programs, not that I can understand why. As I have mentioned, GLIB is installed so I can't figure out whats wrong. On Nov 28, 2007 10:33 AM, Roberto Cavada [EMAIL PROTECTED] wrote: Shalom Kramer wrote: *** The test program

Re: [pygtk] Terminal Resizing

2007-11-28 Thread Shalom Kramer
If I understand correctly you want to make the VTE's change their size acording to the users preferences, so that one terminal will expand and the other one shrink. I have done just that using the gtk.VPaned and gtk.HPaned classes. They can hold two widgest each so I just packed gtk.Paned inside

[pygtk] Installing PyGTK on solaris 8

2007-11-27 Thread Shalom Kramer
I have sent this question before but got no response... I am trying to install PyGTK on Solaris 8. When I run: $ ./configure I get - checking for GLIB - version = 2.2.0... no *** Could not run GLIB test program, checking why... *** The test program failed to compile or link. See the file

Re: [pygtk] To put gnome-terminal in a pygtk application

2007-11-18 Thread Shalom Kramer
import vte (the python vte wrapper is installed from RH5 by default. On RH4 I took the debian package, done a dep-to-rpm conversion and installed it) term = vte.Terminal() term.fork_command(command) I found some help in the Ruby manual for vte and of course in google code search. On Nov 18,