Re: Problem with compiling my first GTK program

2001-02-02 Thread Andrew Wettstein
On Fri, Feb 02, 2001 at 06:52:51PM -0500, Francois Fayard wrote: > > [EMAIL PROTECTED]:~/GTK/ESSAI$ gcc base.c -o base `gtk-config --cflags > --libs` > /usr/bin/ld: cannot find -lXi > collect2: ld returned 1 exit status you need xlibs-dev, but that's changed since potato, i think it was xlib6g-de

Problem with compiling my first GTK program

2001-02-02 Thread Francois Fayard
Hi, I'm trying to write a c program using GTK. I'm very new to C. When I compile the first program from the GTK Tutorial, I have : /* example-start base base.c */ #include int main( int argc, char *argv[] ) { GtkWidget *window; gtk_init (&argc, &argv); wind