http://www.fmi.uni-passau.de/archive/doc/unix/perl/faq/1.13.html (Einblicke ins Internet, 10/1995)
How do I get Perl to compile on a Next?
How do I get Perl to compile on a Next?
Bill Eldridge <bill@cognet.ucla.edu> reports:
To get perl to compile on Nexts, you need to combine the
ansi and bsd headers:
cd /usr/include
mkdir ansibsd
cd ansibsd
ln -s ../ansi
ln -s ../bsd
Then follow the configuration instructions for Nexts, *replacing*
all mention of -I/usr/include/ansi or -I/usr/include/bsd with
-I/usr/include/ansibsd.
(There might be more elegant solutions, but this is how I
did it, and it's quick and so far painless).