Problem with gtk

2006-12-16 Thread Naveen Kumar
Hi all, I am using an hand held device running on montavista linux, 1) i wrote a c program int main () { int i; while (i 25000) printf (%d\n, i); } it works very fine in my machine without any problem. (it takes around 1.2 minutes) 2)If try to run

Re: GTK-GUI and video display

2006-12-16 Thread Attilio Fiandrotti
[EMAIL PROTECTED] wrote: Hi, I need to run a GTK GUI and display video via DFB. I understand that the GTK-GUI would be using layer 0 (primary) and video would use Layer 1. However when the GUI comes up then the GUI/video layer is not visible. Any inputs on whether any changes are required

Re: Can't link to Pango. Pango is required to build

2006-12-16 Thread nvp15273
Hi, I was wondering if you were ever able to find a solution to this problem. I would really appreciate anything you may remember on how you got this solved. Thanks Nicolas Madhusudan E wrote: Hi all: I want to cross compile gtk2.6.10 on linux-fb. I successfully

Re: Can't link to Pango. Pango is required to build

2006-12-16 Thread Yeti
On Fri, Dec 15, 2006 at 11:02:47PM -0800, nvp15273 wrote: I was wondering if you were ever able to find a solution to this problem. I would really appreciate anything you may remember on how you got this solved. Thanks Madhusudan E wrote: I want to cross compile gtk2.6.10 on

Makefile.am Help for GnomeProgram make errors

2006-12-16 Thread Tony Freeman
Hello, I am using Anjuta. I need help with a particular piece of configuration in order to make GnomeProgram work properly. I get this series of errors when trying to make the program: main.c: In function ‘main’: main.c:121: error: ‘PREFIX’ undeclared (first use in this function) main.c:121:

RE: Problem with gtk

2006-12-16 Thread Viraj Chatterjee
If the intention is to run a loop for 25000 iterations, then this is a horrible way to attempt that. You haven't initialized i, neither are you incrementing it. -vc -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Naveen Kumar Sent: Saturday, December

Re: Problem with gtk

2006-12-16 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat, Dec 16, 2006 at 04:55:48PM +0530, Naveen Kumar wrote: Hi all, I am using an hand held device running on montavista linux, 1) i wrote a c program int main () { int i; i is uninitialized here. It contains a