Hello,
I am trying to build this program on Debian sid. When I issue "make", I get:
gcc -O2 -Wall -fPIC `pkg-config gtk+-2.0 --cflags` `glib-config --cflags` -c -o gknut.o gknut.c
/bin/sh: glib-config: command not found
When I change "glib-config --cflags" to "pkg-config glib-2.0 --cflags" I get:
gcc -O2 -Wall -fPIC `pkg-config gtk+-2.0 --cflags` `pkg-config glib-2.0 --cflags` -c -o gknut.o gknut.c
gknut.c: In function ‘createPlugin’:
gknut.c:537: warning: passing argument 1 of ‘gdk_string_width’ from incompatible pointer type
/usr/include/gtk-2.0/gdk/gdkfont.h:79: note: expected ‘struct GdkFont *’ but argument is of type ‘struct PangoFontDescription *’
gknut.c: In function ‘applyConfig’:
gknut.c:653: warning: assignment discards qualifiers from pointer target type
gknut.c:658: warning: assignment discards qualifiers from pointer target type
gknut.c:663: warning: assignment discards qualifiers from pointer target type
gknut.c:670: warning: assignment discards qualifiers from pointer target type
gknut.c: In function ‘createTab’:
gknut.c:864: error: too many arguments to function ‘gtk_text_view_new’
make: *** [gknut.o] Error 1
I guess this means that the plugin's not compatible with gkrellm2?