From: Arnaud L. <as...@la...> - 2002-12-14 16:37:11
|
Le Fri, Dec 13, 2002 at 01:37:10PM -0800, Don Campbell a écrit: > >-Wpointer-arith -Werror -c gtk-exif-browser.c -fPIC -DPIC -o ^^^^^^^ This is the problem. > >cc1: changing search order for system directory "/usr/local/include" > >cc1: as it has already been specified as a non-system directory And this is the cause: you're using gcc3. > Can someone help me figure out how to compile this package? Either use cvs (it has been corrected by me in rev 1.13 on configure.in, dated 2002/09/13), or either wait a new release -- but not so many things have changed, so we may wait a few time before rolling out a new release. Another way would be to modify "configure" before running it, and deleting every bit of "Werror" in it... Try this on a clean dir: sed -e 's/ -Werror//g' configure.in >configure.in.new; mv configure.in.new configure.in And then retry. Arnaud. (xpost and fu2) |