Re: GLIB compilation problem

2006-07-18 Thread ibr
Hello Siva, On Mon, Jul 10, 2006 at 04:26:47PM +0530, siva s wrote: I am trying to cross compile the glib-2.0 to ARM architecture.When i run configure , i'm getting the following error checking for extra flags to get ANSI library prototypes... configure: error: cannot run test program while

Re: Q: Suitability of GTK+ for critical embedded application

2005-12-03 Thread ibr
Hello Are, On Sat, Dec 03, 2005 at 05:38:17PM +0100, Are Leistad wrote: - suitability of GTK+ for mission critical embedded application? You might be interested to investigate the behavior in the case of virtual memory exhaustion. As I looked at glib, I couldn't see an elegant way to pass

Re: Compiling pkgconfig with arm-linux-gcc

2005-08-11 Thread ibr
Hello Olexiy, On Thu, Aug 11, 2005 at 09:48:55AM +0300, Olexiy Avramchenko wrote: AFAICU, I need to tell pkg-config where my headers and libraries are. Should it Just Work (tm) if I manually supply a *.pc file pointing to /usr/arm-linux/{include,lib}? It should work. But pointing

Re: Compiling pkgconfig with arm-linux-gcc

2005-08-10 Thread ibr
Hello prakhar, On Wed, Aug 10, 2005 at 04:58:05AM +0100, prakhar vig wrote: I tried the above steps for configuring glib atleast now the error test program found is not coming, but the error I am receiving now is: error: checking for glib-genmarshal result:no error:could not found

Re: Compiling pkgconfig with arm-linux-gcc

2005-08-10 Thread ibr
Hello prakhar, On Wed, Aug 10, 2005 at 07:01:00AM +0100, prakhar vig wrote: checking expat.h usability... yes checking expat.h presence... yes checking for expat.h... yes checking for XML_SetDoctypeDeclHandler... no configure: error: Cannot find usable expat library. This could mean that

Re: Compiling pkgconfig with arm-linux-gcc

2005-08-10 Thread ibr
Hello Olexiy, On Wed, Aug 10, 2005 at 09:57:29AM +0300, Olexiy Avramchenko wrote: Are you sure that you need cross-compiled pkg-config ? You probably dont want to have any devel on your target arm system, so where's the point to have pkg-config for arm-linux? You need it on your instrumental

Re: Compiling pkgconfig with arm-linux-gcc

2005-08-09 Thread ibr
Hello prakhar, On Tue, Aug 09, 2005 at 10:10:35AM +0100, prakhar vig wrote: a)I tried to cofigure pkconfig with arm-linux-gcc but it is giving some problem. Can anyone tell me the command for configuring pkgconfig with arm-linux-gcc. You need to type some command! But seriously, you'd have

Re: Troubleshooting segfault

2005-08-04 Thread ibr
Hello Jonathan, On Thu, Aug 04, 2005 at 02:34:50PM -0500, Jonathan Hayward wrote: I've been developing an application, and now it crashes shortly after starting; it segfaults (secondary damage?) either on the first attempt to strncpy() from a text input, or gtk_image_new_from_pixbuf(). Both

Re: Troubleshooting segfault

2005-08-04 Thread ibr
On Thu, Aug 04, 2005 at 03:19:05PM -0500, Jonathan Hayward wrote: I'm scratching my head at how the pointer to the entry could be corrupted between when the entry is created and when the signal handler reads the value. The pointer is corrupt; on two runs I got values of 0x0/0xFF. I don't

storing integers in pointers

2005-03-19 Thread ibr
Hello, I'm using GTree and GHashTable to store bytes as data (via provided type conversion macros like GINT_TO_POINTER). Lookup functions return NULL if the key was not found. Does this mean that one can't use the type conversion trick to store data for which 0 is a valid value? With kind