On 14 September 2010 19:34, Giriprasad Deviprasad wrote: > > Hi All, > > I configured cairo successfully, but when I do make, it gives the foll > errors : > > cairo-scaled-font-subsets.c: In function > '_cairo_scaled_font_subset_create_glyph_names': > cairo-scaled-font-subsets.c:1015: error: implicit declaration of function > '_cairo_utf8_to_utf16' > cairo-scaled-font-subsets.c:1015: warning: nested extern declaration of > '_cairo_utf8_to_utf16' > make[3]: *** [cairo-scaled-font-subsets.lo] Error 1 > make[3]: Leaving directory `/root/playhome/cairo-1.8.10/src' > > Any ideas why? >
Why are you doing it ? Are you trying to patch up cairo package in fedora repo (which already has a built for 1.8.10 F13) ? Implicit declaration of function x means that either x is an external function and you need to include the proper header file which has corresponding definition (from some devel package) or x is internal function but you're using it before it's defined. Here it seems to me that dependency devel packages (of required version) are missing on your system or your configure script is not picking them up in case they are there. As I said more information is required. -- Rakesh Pandit https://fedoraproject.org/wiki/User:Rakesh freedom, friends, features, first _______________________________________________ india mailing list [email protected] https://admin.fedoraproject.org/mailman/listinfo/india
