From: Perl 5 Porters Date: Tue, 1 Oct 1996 02:00:05 +0000 (+0000) Subject: perl 5.003_06: dev/null X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=66325990b081a18f192eadc42d4ecb5fe4e352c4;p=p5sagit%2Fp5-mst-13.2.git perl 5.003_06: dev/null Perl 5.003_05 compiles on DYNIX/ptx 4.0 (v4.1.3), and passes all tests. The only change needed is in "ext/NDBM_File/Makefile.PL" - on this system, ndbm is actually contained in the libc library, and must be linked against -lc when compiling. (this is for dynamic ELF executables, I didn't compile statically) --- diff --git a/ext/NDBM_File/hints/dynixptx.pl b/ext/NDBM_File/hints/dynixptx.pl new file mode 100644 index 0000000..d402c17 --- /dev/null +++ b/ext/NDBM_File/hints/dynixptx.pl @@ -0,0 +1,3 @@ +# On DYNIX/ptx 4.0 (v4.1.3), ndbm is actually contained in the +# libc library, and must be explicitly linked against -lc when compiling. +$self->{LIBS} = ['-lc'];