perl 5.003_06: dev/null
Perl 5 Porters [Tue, 1 Oct 1996 02:00:05 +0000 (02:00 +0000)]
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)

ext/NDBM_File/hints/dynixptx.pl [new file with mode: 0644]

diff --git a/ext/NDBM_File/hints/dynixptx.pl b/ext/NDBM_File/hints/dynixptx.pl
new file mode 100644 (file)
index 0000000..d402c17
--- /dev/null
@@ -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'];