Re: Problem including glib.h

2006-03-21 Thread Carlo Agrusti
Rick Jones ha scritto lo scorso 20/03/2006 19:20: Here is the answer to your question; what does a $ ls /usr/include/glib-2.0 command show? Having glib installed on your system does not necessarily mean that you have all includes and static libraries; for example - on a Debian system - you

Re: Problem including glib.h

2006-03-20 Thread Rick Jones
Here is the answer to your question; what does a $ ls /usr/include/glib-2.0 command show? Having glib installed on your system does not necessarily mean that you have all includes and static libraries; for example - on a Debian system - you have to: # apt-get install libglib-2.0 in order to

Re: Problem including glib.h

2006-03-18 Thread Carlo Agrusti
Randima Niroshini ha scritto lo scorso 18/03/2006 02:24: Hi, I am trying to use glib under a Linux. glib is installed under /usr/include/glib-2.0, however, when I' m trying to include glib.h in my program and do make, it gives an error as follows. glib.h: No such file or directory I

Re: Problem including glib.h

2006-03-18 Thread Randima Niroshini
Actually,I found that it's nothing wrong with glib includes and static libraries, rather for some reason, automake does not subsititute following variables by the PKG_CHECK_MODULES macro. So I substituted them manually. PKG_CHECK_MODULES(GLIB, glib-2.0 = 2.6, [

Problem including glib.h

2006-03-17 Thread Randima Niroshini
Hi, I am trying to use glib under a Linux. glib is installed under /usr/include/glib-2.0, however, when I' m trying to include glib.h in my program and do make, it gives an error as follows. glib.h: No such file or directory I have also included, the package checking to configure.ac since I am