On Thu, Sep 23, 2004 at 08:51:53AM +1000, Michael Lake wrote: > Hi all > > Trying to compile a kernel on Debian. make menuconfig works fine but I > wanted an X version. There is xconfig and gconfig. xconfig needs qt > libs but I'd prefer gconfig. gconfig needs something that I'm missing. > > -- kernel-source-2.6.5$ make gconfig > /bin/sh: line 1: pkg-config: command not found
you're missing pkg-config :) > * > * Unable to find the GTK+ installation. Please make sure that > * the GTK+ 2.0 development package is correctly installed... > * You need gtk+-2.0, glib-2.0 and libglade-2.0. > > $ sudo apt-get install libgtk2.0-0 > libgtk2.0-0 is already the newest version. > > $ sudo apt-get install libglib2.0-0 > libglib2.0-0 is already the newest version. > > $ sudo apt-get install libglade2-0 > libglade2-0 is already the newest version. apt-get install libglade2.0-dev (which in turn depends on libgtk2.0-dev, libglib2.0-dev, pkg-config etc.) Conrad. -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
