$ tar xvfz gnome-iconedit-1.0.0.tar.gz $ cd gnome-iconedit-1.0.0 $ ./configure checking for gdk-pixbuf-config... no checking for GDK_PIXBUF - version >= 0.4.0... no *** The gdk-pixbuf-config script installed by GDK_PIXBUF could not be found *** If GDK_PIXBUF was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GDK_PIXBUF_CONFIG environment variable to the *** full path to gdk-pixbuf-config. not found configure: error: gdk-pixbuf 0.5 not found |
$ ./configure (snip) checking for gdk-pixbuf-config... /usr/local/bin/gdk-pixbuf-config checking for GDK_PIXBUF - version >= 0.4.0... yes found (snip) creating pixmaps/Makefile creating macros/Makefile sed: can't read ./macros/Makefile.in: No such file or directory creating config.h $ make edit.c:204: warning: pointer of type `void *' used in arithmetic edit.c:204: warning: pointer of type `void *' used in arithmetic edit.c:204: warning: pointer of type `void *' used in arithmetic edit.c:213: warning: passing arg 7 of `gdk_pixbuf_new_from_data' makes integer from pointer without a cast edit.c:213: too few arguments to function `gdk_pixbuf_new_from_data' edit.c: At top level: edit.c:403: warning: no previous prototype for `edit_paste_at' make[3]: *** [edit.o] Error 1 make[3]: Leaving directory `/usr/local/src/gnome-iconedit-1.0.0/src' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/usr/local/src/gnome-iconedit-1.0.0/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/local/src/gnome-iconedit-1.0.0' make: *** [all-recursive-am] Error 2 |
/* Make a gdk-pixbuf */ pb = gdk_pixbuf_new_from_data (buf, ART_PIX_RGB, TRUE, pbuffer->width, pbuffer->height, pbuffer->rowstride, NULL, NULL); pbuffer->pixbuf = pb; |
GdkPixbuf *gdk_pixbuf_new_from_data (const guchar *data, GdkColorspace colorspace, gboolean has_alpha, int bits_per_sample, int width, int height, int rowstride, GdkPixbufDestroyNotify destroy_fn, gpointer destroy_fn_data); |
$ cd gdk-pixbuf-0.7.0 $ su # make uninstall # exit |
$ cd gnome-iconedit-1.0.0 $ make distclean $ ./configure (snip) checking for gdk-pixbuf-config... no checking for GDK_PIXBUF - version >= 0.4.0... no *** The gdk-pixbuf-config script installed by GDK_PIXBUF could not be found *** If GDK_PIXBUF was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the GDK_PIXBUF_CONFIG environment variable to the *** full path to gdk-pixbuf-config. not found configure: error: gdk-pixbuf 0.5 not found |
$ ./configure $ make $ su # make install # exit |
$ gnome-iconedit GnomeUI-WARNING **: Could not find GNOME pixmap file gnome-iconedit/gnome-taskli st.png GnomeUI-WARNING **: Could not find GNOME pixmap file gnome-iconedit/palette-edit .png GnomeUI-WARNING **: Could not open help topics file NULL GnomeUI-WARNING **: Could not find GNOME pixmap file gnome-iconedit/selector.png GnomeUI-WARNING **: Could not find GNOME pixmap file gnome-iconedit/paint.png GnomeUI-WARNING **: Could not find GNOME pixmap file gnome-iconedit/fill.png GnomeUI-WARNING **: Could not find GNOME pixmap file gnome-iconedit/dropper.png |