Hi There are many ways of fixing such problems. You could fight with automake to remove what is presumably a hard coded GCC option. You could alter the generated Makefile(s). Or you could do something like
gmake -n -p | grep Werror to see which make variable is using -Werror You might see something like CFLAGS = -Wall -Wextra -Werror To not use those options, you could build with gmake CFLAGS="-v" for a more Sun Studio-like warning option. A+ Paul -- This message posted from opensolaris.org