diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-10-01 02:00:05 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-10-01 02:00:05 +0000 |
commit | 66325990b081a18f192eadc42d4ecb5fe4e352c4 (patch) | |
tree | 1e9de97105c54007e6c3f625e95930482ccbd49e /ext | |
parent | 27d4819aa2398f978c433f7367bcf083183444c9 (diff) | |
download | perl-66325990b081a18f192eadc42d4ecb5fe4e352c4.tar.gz |
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)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/NDBM_File/hints/dynixptx.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/NDBM_File/hints/dynixptx.pl b/ext/NDBM_File/hints/dynixptx.pl new file mode 100644 index 0000000000..d402c17901 --- /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']; |