Re: gtk-list Digest, Vol 25, Issue 4

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello David,
Sorry for posting to you.It was not intentional.I will
make sure all the posting go to the list.
I saw your reply.I looked at the GTK that came with my
package,I did not see any GTK1.2 folder.I do have few
question

1)How to uninstall the package that I installed
manually?
2)How to use the GTK package that came with the
distribution.I do not see any GTK1.2 folder or any of
the examples files.This is fedora 2.0 installation.

Thanks
Anees



Stay on the list.  Any further personal e-mail will be
ignored.

On Wed, May 03, 2006 at 12:07:35AM +0100, Anees Shahul
wrote:
> 
> The correct error message is as follows
> "error while loading shared libraries:
> /usr/lib/libgdk-1.2.so.0: un defined symbol:
> XListInputDevices".I followed the install procedure
> that was available with source.
> 
> install procedure
> ========================
>   gzip -cd gtk+-1.2.10.tar.gz | tar xvf - 
>   cd gtk+-1.2.10
>   ./configure
>   make				  
>   rm -rf /install-prefix/include/gtk /install-  
>   prefix/include/gdk
>   make install		
> 
> I am new to linux.Any help is appreciated

Please uninstall when you have installed manually and
use
the gtk+-1.2 package (called gtk+) that come with your
distribution.

Yeti




--- gtk-list-request@xxxxxxxxx wrote:

> Send  submissions to
> 	gtk-list@xxxxxxxxx
> 
> To subscribe or unsubscribe via the World Wide Web,
> visit
> 	http://mail.gnome.org/mailman/listinfo/gtk-list
> or, via email, send a message with subject or body
> 'help' to
> 	gtk-list-request@xxxxxxxxx
> 
> You can reach the person managing the list at
> 	gtk-list-owner@xxxxxxxxx
> 
> When replying, please edit your Subject line so it
> is more specific
> than "Re: Contents of gtk-list digest..."
> 
> 
> Today's Topics:
> 
>    1. cannot execute GTK1.2 Application (Anees
> Shahul)
>    2. Re: cannot execute GTK1.2 Application (David
> Necas (Yeti))
>    3. Re: Windows GTK hang 'not responding' (Derek
> Piper)
>    4. Re: Windows GTK hang 'not responding' (Paul
> Davis)
>    5. Re: cannot execute GTK1.2 Application (David
> Shaw)
>    6. Re: cannot execute GTK1.2 Application (David
> Necas (Yeti))
>    7. compile error: X development libraries not
> found
>       (jay_gtk@xxxxxxxxxxx)
>    8. when the windowing system shuts down,	how does
> Gnome/X tell
>       an application to quit? (Anna)
>    9. GLib 2.11.0 released (Matthias Clasen)
> 
> 
>
----------------------------------------------------------------------
> 
> Message: 1
> Date: Tue, 2 May 2006 17:12:32 +0100 (BST)
> From: Anees Shahul <anees_sh@xxxxxxxxx>
> Subject: cannot execute GTK1.2 Application
> To: gtk-list@xxxxxxxxx
> Message-ID:
>
<20060502161232.95609.qmail@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
> Content-Type: text/plain; charset=iso-8859-1
> 
> Hi
> I have installed GTK+-1.2.10 and GLIB1.2.10.I am
> using
> Fedora core2.0.When tried to run some sample
> applications,it came with an error "Cannot load
> shared
> libraries".Any help appreciated.
> Thanks
> Anees
> 
> 
> Send instant messages to your online friends
> http://uk.messenger.yahoo.com 
> 
> 
> ------------------------------
> 
> Message: 2
> Date: Tue, 2 May 2006 18:44:21 +0200
> From: "David Necas (Yeti)" <yeti@xxxxxxxxxxxxxxx>
> Subject: Re: cannot execute GTK1.2 Application
> To: Anees Shahul <anees_sh@xxxxxxxxx>
> Cc: gtk-list@xxxxxxxxx
> Message-ID:
> <20060502164421.GK25848@xxxxxxxxxxxxxxxxxxxxxx>
> Content-Type: text/plain; charset=us-ascii
> 
> On Tue, May 02, 2006 at 05:12:32PM +0100, Anees
> Shahul wrote:
> > I have installed GTK+-1.2.10 and GLIB1.2.10.I am
> using
> > Fedora core2.0.When tried to run some sample
> > applications,it came with an error "Cannot load
> shared
> > libraries".Any help appreciated.
> 
> I doubt this was the exact message you got.  More
> likely it
> said *what* cannot be loaded.  Also be more specific
> what
> you mean by `I have installed' -- did you normally
> use `yum
> install gtk+' or did you for whatever reason
> compiled it
> from source -- where then, do you have the
> directories in
> LD_LIBRARY_PATH, etc., what does `ldd
> /the/application' say?
> 
> Yeti
> 
> 
> --
> That's enough.
> 
> 
> ------------------------------
> 
> Message: 3
> Date: Tue, 02 May 2006 13:45:50 -0400
> From: Derek Piper <dcpiper@xxxxxxxxxxx>
> Subject: Re: Windows GTK hang 'not responding'
> To: gtk-list@xxxxxxxxx
> Message-ID: <44579ACE.8070800@xxxxxxxxxxx>
> Content-Type: text/plain; charset=ISO-8859-1;
> format=flowed
> 
> 
> 	Hi,
> 
> 	Thanks to all for the helpful hints, even with my
> vague descriptions. 
> It turns out that it was a problem under Windows in
> getting the current 
> time. Using timeGetTime() from the multimedia timers
> I wanted to convert 
> it to microseconds in keeping with the value from
> gettimeofday that's 
> used in the rest of my program. Anyway, when
> multiplying that value by 
> 1000 and assigning it to a larger data type of 'long
> long' it multiplied 
> it within a single 32bit integer and overflowed it.
> 
> /* doesn't work */
> long long usecs;
> long msecs;
> msecs = timeGetTime();
> usecs = msecs * 1000;
> /* ----- */
> 
> Changing to this though, works
> 
> /* works */
> long long usecs;
> long long msecs;
> msecs = timeGetTime();
> usecs = msecs * 1000;
> /* ------- */
> 
> The resulting negative difference from the 'time
> now' to the previous 
> one was a bug in my program that didn't count on
> that happening (too 
> used to programming under Linux I guess) and it
> failed to call the GTK 
> update functions at the required intervals. D'oh.
> 	So, that was my bug (or bugs). I thought I'd post
> that here for the 
> sake of completeness.
> 
> 	Thanks,
> 
> 	Derek
> 
> Tor Lillqvist wrote:
> > Derek Piper writes:
> >  > Any help or hints would be very appreciated.
> > 
> > It would help a lot if you could distill the
> problematic program down
> > to a bare minimum (but still complete and
> compileable) sample program
> > that still exhibits the problem, open a bug report
> on
> > bugzilla.gnome.org, and attach the sample program
> (plain source code)
> > to the bug.
> > 
> > --tml
> > 
> > 
> 
> -- 
> Derek Piper - dcpiper@xxxxxxxxxxx - (812) 856 0111
> IRI 323, School of Informatics
> Indiana University, Bloomington, Indiana
> 
> 
> ------------------------------
> 
> Message: 4
> Date: Tue, 02 May 2006 15:27:33 -0400
> From: Paul Davis <paul@xxxxxxxxxxxxxxxxxxxxx>
> Subject: Re: Windows GTK hang 'not responding'
> To: Derek Piper <dcpiper@xxxxxxxxxxx>
> Cc: gtk-list@xxxxxxxxx
> Message-ID:
> <1146598053.4941.85.camel@xxxxxxxxxxxxxxxxxxxxx>
> 
=== message truncated ===



		
___________________________________________________________ 
Switch an email account to Yahoo! Mail, you could win FIFA World Cup tickets. http://uk.mail.yahoo.com
_______________________________________________

gtk-list@xxxxxxxxx
http://mail.gnome.org/mailman/listinfo/gtk-list

[Index of Archives]     [Touch Screen Library]     [GIMP Users]     [Gnome]     [KDE]     [Yosemite News]     [Steve's Art]

  Powered by Linux