Build problem



I checked out (cvs) a copy of the source tree for
libgnomeui. When I tried to build it this what
happened:

Making all in pixmaps
make[3]: Entering directory
`/usr/src/Source/gnome/libgnomeui/libgnomeui/pixmaps'
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" | sed -e
's,stock_\([^\.]*\)\.png,stock_\1 ./stock_\1.png,g'` ;
\
   /usr/local/gnome-2/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[3]: *** [gnome-stock-pixbufs.h] Error 1
make[3]: Leaving directory
`/usr/src/Source/gnome/libgnomeui/libgnomeui/pixmaps'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/usr/src/Source/gnome/libgnomeui/libgnomeui'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/usr/src/Source/gnome/libgnomeui'
make: *** [all] Error 2

So I tried to look up for any information on it (
mailing lists and other ) and I modified this in the
Makefile.am:

gnome-stock-pixbufs.h: @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'` ; \

--           @GDK_PIXBUF_CSOURCE@ --raw --build-list
$$var > pixbufs-tmp && \

++           @GDK_PIXBUF_CSOURCE@ --raw --build-list
$(var) > pixbufs-tmp && \

           cat $(srcdir)/copyright.txt pixbufs-tmp >
gnome-stock-pixbufs.h
        -rm -f pixbufs-tmp

This seemed to have recognized $(var) ( I'm not sure
of this ), but the build continued until it broke
again:

 gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..
-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED
-DGDK_PIXBUF_DISABLE_DEPRECATED
-DGNOMEUILIBDIR=\"/usr/local/gnome-2/lib\"
-DGNOMEUIDATADIR=\"/usr/local/gnome-2/share\"
-DGNOMEUIPIXMAPDIR=\"/usr/local/gnome-2/share/pixmaps\"
-DGNOMEUIICONDIR=\"/usr/local/gnome-2/share/icons\"
-DGNOMEUISERVERDIR=\"/usr/local/gnome-2/libexec\"
-DGNOMEUILOCALSTATEDIR=\"/usr/local/gnome-2/var\"
-DGNOMEUILOCALEDIR=\"/usr/local/gnome-2//locale\"
-DSYSCONFDIR=\"/usr/local/gnome-2/etc\"
-DG_LOG_DOMAIN=\"GnomeUI\" -DORBIT2=1 -pthread
-I/usr/local/gnome-2/include/libgnome-2.0
-I/usr/local/gnome-2/include/glib-2.0
-I/usr/local/gnome-2/lib/glib-2.0/include
-I/usr/local/gnome-2/include/orbit-2.0
-I/usr/local/gnome-2/include/libbonobo-2.0
-I/usr/local/gnome-2/include/gconf/2
-I/usr/local/gnome-2/include/gnome-vfs-2.0
-I/usr/local/gnome-2/lib/gnome-vfs-2.0/include
-I/usr/local/gnome-2/include/linc-1.0
-I/usr/local/gnome-2/include/bonobo-activation-2.0
-I/usr/local/gnome-2/include/libgnomecanvas-2.0
-I/usr/local/gnome-2/include/libart-2.0
-I/usr/local/gnome-2/include/pango-1.0
-I/usr/include/freetype2
-I/usr/local/gnome-2/include/gtk-2.0
-I/usr/local/gnome-2/lib/gtk-2.0/include
-I/usr/local/gnome-2/include/atk-1.0
-I/usr/local/gnome-2/include/libbonoboui-2.0
-I/usr/local/gnome-2/include/libxml2 -g -O2 -MT
gnome-stock-icons.lo -MD -MP -MF
.deps/gnome-stock-icons.Tpo -c gnome-stock-icons.c 
-fPIC -DPIC -o .libs/gnome-stock-icons.o
gnome-stock-icons.c: In function `get_default_icons':
gnome-stock-icons.c:94: `stock_attach' undeclared
(first use in this function)
gnome-stock-icons.c:94: (Each undeclared identifier is
reported only once
gnome-stock-icons.c:94: for each function it appears
in.)
gnome-stock-icons.c:95: `stock_book_open' undeclared
(first use in this function)
gnome-stock-icons.c:96: `stock_book_red' undeclared
(first use in this function)
gnome-stock-icons.c:97: `stock_book_green' undeclared
(first use in this function)
gnome-stock-icons.c:98: `stock_book_blue' undeclared
(first use in this function)
gnome-stock-icons.c:99: `stock_book_yellow' undeclared
(first use in this function)
gnome-stock-icons.c:101: `stock_timer' undeclared
(first use in this function)
gnome-stock-icons.c:102: `stock_timer_stopped'
undeclared (first use in this function)
gnome-stock-icons.c:103: `stock_trash' undeclared
(first use in this function)
gnome-stock-icons.c:104: `stock_trash_full' undeclared
(first use in this function)
gnome-stock-icons.c:106: `stock_mail_compose'
undeclared (first use in this function)
gnome-stock-icons.c:107: `stock_mail' undeclared
(first use in this function)
gnome-stock-icons.c:108: `stock_mail_receive'
undeclared (first use in this function)
gnome-stock-icons.c:109: `stock_mail_send' undeclared
(first use in this function)
gnome-stock-icons.c:110: `stock_mail_reply' undeclared
(first use in this function)
gnome-stock-icons.c:111: `stock_mail_forward'
undeclared (first use in this function)
gnome-stock-icons.c:113: `stock_mic' undeclared (first
use in this function)
gnome-stock-icons.c:114: `stock_volume' undeclared
(first use in this function)
gnome-stock-icons.c:115: `stock_midi' undeclared
(first use in this function)
gnome-stock-icons.c:116: `stock_line_in' undeclared
(first use in this function)
gnome-stock-icons.c:118: `stock_table_borders'
undeclared (first use in this function)
gnome-stock-icons.c:119: `stock_table_fill' undeclared
(first use in this function)
gnome-stock-icons.c:121: `stock_text_bulleted_list'
undeclared (first use in this function)
gnome-stock-icons.c:122: `stock_text_numbered_list'
undeclared (first use in this function)
gnome-stock-icons.c:123: `stock_text_indent'
undeclared (first use in this function)
gnome-stock-icons.c:124: `stock_text_unindent'
undeclared (first use in this function)
gnome-stock-icons.c:126: `stock_menu_about' undeclared
(first use in this function)
gnome-stock-icons.c:127: `stock_menu_blank' undeclared
(first use in this function)
gnome-stock-icons.c:129: `stock_not' undeclared (first
use in this function)
gnome-stock-icons.c:130: `stock_scores' undeclared
(first use in this function)
gnome-stock-icons.c:132: `stock_multiple_file'
undeclared (first use in this function)
make[3]: *** [gnome-stock-icons.lo] Error 1
make[3]: Leaving directory
`/usr/src/Source/gnome/libgnomeui/libgnomeui'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/usr/src/Source/gnome/libgnomeui/libgnomeui'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/usr/src/Source/gnome/libgnomeui'
make: *** [all] Error 2


At this point I don't what else to try. Any
suggestions will be appreciated




__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]