> cc='cc -n32 -mips4 -TARG:platform=ip32'; > > > perl -V:ccflags > > ccflags='-D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 -DLANGUAGE_C >-I/server/people/staff/easmith/include -DDEBUGGING'; > > > Does the C compiler show by -V:cc exist in your system? > > Yes. It is capable of compiling the above program. cc -n32 -mips4 > -TARG:platform=ip32 -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1184 > -DLANGUAGE_C -I/server/people/staff/easmith/include -DDEBUGGING -c > also compiles it.
Hmmm. You don't have the environment variable CC set, by any chance? That the configuration phase claims that those headers cannot be found means that the try_compile_and_link() in Makefile.PL fails. Try editing that and removing the 2>/dev/null from the $cccmd, maybe we'll see what is going wroing. > BTW, getrusage, getrlimit, getrlimit64, setrlimit, setrlimit64, > getpriority, and setpriority all exist on IRIX 6.5. The *64 versions: I don't think the BSD::Resource currently supports the *64() versions. -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen
