Thu 30 Nov 2006 07:24:51 PM UTC, comment #2:
I've found a way to fix this. First open the Makefile that its under src directory, look for this:
AM_CFLAGS = -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/at$
-DDATA_DIR=\""$(datadir)"\" \
-DLOCALE_DIR=\""$(datadir)/locale"\" \
-DPIXMAPS_DIR=\""$(datadir)/pixmaps"\"
And then add this:
AM_CFLAGS = -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/at$
-DDATA_DIR=\""$(datadir)"\" \
-DLOCALE_DIR=\""$(datadir)/locale"\" \
-DPIXMAPS_DIR=\""$(datadir)/pixmaps"\" \
-D_FILE_OFFSET_BITS=64
Notice that a \ and -D_FILE_OFFSET_BITS=64 where added.
Now open interface.c and look for this:
void prepare_listedata(GtkTreeView Atreedata, gchar Atitle)
{
GtkTreeSelection *Lselection = gtk_tree_view_get_selection(GTK_TREE_VIEW(Atreedata));
GtkTreeStore *Lmodel = gtk_tree_store_new(7, G_TYPE_INT, GDK_TYPE_PIXBUF, G_TYPE_STRING,
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
G_TYPE_UINT);
Change G_TYPE_UINT to G_TYPE_UINT64, save, make clean && make and you're done.
However after doing that i get this weird warnings:
(graveman:2795): Gtk-WARNING **: gtktreestore.c:889: Invalid column number 136326824 added to iter (remember to end your list of columns with a -1)
(graveman:2795): Gtk-WARNING **: gtktreestore.c:889: Invalid column number 136326776 added to iter (remember to end your list of columns with a -1)
Although they appear to cause no harm, i don't like those strange warnings, but i'm still unable to get rid of them.
|