|
安装libgnomeui-2.4.0.1失败,下面是一些详细的内容,请给点耐心看一下!
安装命令为:
- ./configure --prefix=$GNOME_PREFIX --libexecdir=$GNOME_PREFIX/sbin \
- --disable-gtk-doc &&
- make &&
- make install
复制代码
错误信息为:
- rm -f gnome-stock-pixbufs.h
- var=`echo "stock_attach.png stock_book_blue.png stock_book_green.png stock_book_open.png stock_book_red.png stock_book_yellow.png stock_line_in.png stock_mail.png stock_mail_compose.png stock_mail_forward.png stock_mail_receive.png stock_mail_reply.png stock_mail_send.png stock_menu_about.png stock_menu_blank.png stock_scores.png stock_mic.png stock_multiple_file.png stock_not.png stock_table_borders.png stock_table_fill.png stock_text_bulleted_list.png stock_text_indent.png stock_text_numbered_list.png stock_text_unindent.png stock_timer.png stock_timer_stopped.png stock_trash.png stock_trash_full.png stock_volume.png stock_midi.png stock_authentication.png" | sed -e 's,stock_\([^\.]*\)\.png,stock_\1 ./stock_\1.png,g'` ; \
- /usr/bin/gdk-pixbuf-csource --raw --build-list $var > pixbufs-tmp && \
- cat ./copyright.txt pixbufs-tmp > gnome-stock-pixbufs.h
- failed to load "./stock_attach.png": Couldn't recognize the image file format for file './stock_attach.png'
- make: *** [gnome-stock-pixbufs.h] Error 1
复制代码
libgnomeui/pixmaps/Makefile出错源代码为:
- stock_images = stock_attach.png stock_book_blue.png stock_book_green.png stock_book_open.png stock_book_red.png stock_book_yellow.png stock_line_in.png stock_mail.png stock_mail_compose.png stock_mail_forward.png stock_mail_receive.png stock_mail_reply.png stock_mail_send.png stock_menu_about.png stock_menu_blank.png stock_scores.png stock_mic.png stock_multiple_file.png stock_not.png stock_table_borders.png stock_table_fill.png stock_text_bulleted_list.png stock_text_indent.png stock_text_numbered_list.png stock_text_unindent.png stock_timer.png stock_timer_stopped.png stock_trash.png stock_trash_full.png stock_volume.png stock_midi.png stock_authentication.png
- gnome-stock-pixbufs.h: /usr/bin/gdk-pixbuf-csource $(stock_images)
- -rm -f gnome-stock-pixbufs.h
- var=`echo "$(stock_images)" | sed -e 's,stock_\([^\.]*\)\.png,stock_\1 $(srcdir)/stock_\1.png,g'` ; \
- /usr/bin/gdk-pixbuf-csource --raw --build-list $$var > pixbufs-tmp && \
- cat $(srcdir)/copyright.txt pixbufs-tmp > gnome-stock-pixbufs.h
- -rm -f pixbufs-tmp
复制代码 |
|