in reply to Re^2: Net::Pcap install problem
in thread Net::Pcap install problem

Solaris' system compiler apparently doesn't like -o in combination with -E — at least

$ cc -flags | grep -- -E -E Compile source through preprocessor only, output to st +dout

Maybe you could try redirecting the output

cc -E ... find-funcs.h > cpp-out.h

Just an idea...