Subject: Re: perl?
To: Jonathan Stone <jonathan@DSG.Stanford.EDU>
From: D. Sean Davidson <davidson@zk3.dec.com>
List: port-pmax
Date: 08/20/1997 17:46:21
I finally have a script that can build perl using the /usr/lib shared
libraries with the modf.S fix in /usr/lib/libc.so and pass all standard
tests.

Maybe the shared library libposix.so should be removed from the pmax kit
until ld.so is fixed of the new ld.so_elf32 is put in place so the duplicate
rename() functions don't clash.  Has anyone checked to see if there are
any other duplicate named routines across the shared libraries that could
cause this same problem?

Sean

#!/bin/sh

rm -f config.sh ext.libs

sh Configure -des
	-Dhint='previous' \
	-Dlibpth='/usr/lib' \
	-Dlibs='-lcrypt -lm -lc' \
	-Dlibc='/usr/lib/libc.so'

make
rm -f perl

sed 's/-lposix//g' ext.libs > ext.libs.noposixlib
mv ext.libs.noposixlib ext.libs

make perl

exit $?