Graphical C programming with GTK 2.0

2004-12-10 Thread Frank Staals
I would like to build graphical C programs, therefor I wanted to use GTK. I tried to build the first program in the GTK Tutorial: http://www.gtk.org/tutorial/ch-gettingstarted.html and I tried to compile it as it was explained there: gcc mainwindow.c -o mainwindow `pkg-config --cflags --libs

Re: Graphical C programming with GTK 2.0

2004-12-10 Thread Bob Van Zant
The output you pasted below used single quotes instead of backticks for the pkg_config portion of the argument. Single quote: ', backtick `. I'm not sure why you used single quotes there, because your examples in your email used backticks. Also, it looks like you're missing some of the glib and

Re: Graphical C programming with GTK 2.0

2004-12-10 Thread Miguel Mendez
On Fri, 10 Dec 2004 19:48:08 + Frank Staals [EMAIL PROTECTED] wrote: I would like to build graphical C programs, therefor I wanted to use GTK. I tried to build the first program in the GTK Tutorial: http://www.gtk.org/tutorial/ch-gettingstarted.html and I tried to compile it as it was

Re: Graphical C programming with GTK 2.0

2004-12-10 Thread Frank Staals
Bob Van Zant wrote: The output you pasted below used single quotes instead of backticks for the pkg_config portion of the argument. Single quote: ', backtick `. I'm not sure why you used single quotes there, because your examples in your email used backticks. Also, it looks like you're missing

Re: Graphical C programming with GTK 2.0

2004-12-10 Thread Bob Van Zant
The attachments prove that the .pc file is installed, however, not where pkg_config is looking. A workaround for this is to set the PKG_CONFIG_PATH environment variable. See pkg-config(1). The second attachment you gave, with the very small number of errors looks to me like you've got a missing