diff options
author | Martin J. Bligh <mbligh@us.ibm.com> | 1998-11-10 10:01:10 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-11-12 11:40:37 +0000 |
commit | 81230d9604d4b347c737c9ccbc2982314f04f5af (patch) | |
tree | 1a5e5227fb8bfc56d7076e4e1976487e9a123fc1 /ext | |
parent | b7b1e1c7f67761f000f4d3ded4bfbb64dd633a93 (diff) | |
download | perl-81230d9604d4b347c737c9ccbc2982314f04f5af.tar.gz |
Re: Making Perl work on DYNIX/ptx
Message-ID: <187803647.910720870@w-186d219.rhe.sequent.com>
To: jhi@iki.fi
cc: gbarr@ti.com, gbarr@pobox.com, gsar@umich.edu
p4raw-id: //depot/cfgperl@2228
Diffstat (limited to 'ext')
-rw-r--r-- | ext/DB_File/hints/dynixptx.pl | 3 | ||||
-rw-r--r-- | ext/POSIX/hints/dynixptx.pl | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ext/DB_File/hints/dynixptx.pl b/ext/DB_File/hints/dynixptx.pl new file mode 100644 index 0000000000..bb5ffa56e6 --- /dev/null +++ b/ext/DB_File/hints/dynixptx.pl @@ -0,0 +1,3 @@ +# Need to add an extra '-lc' to the end to work around a DYNIX/ptx bug + +$self->{LIBS} = ['-lm -lc']; diff --git a/ext/POSIX/hints/dynixptx.pl b/ext/POSIX/hints/dynixptx.pl new file mode 100644 index 0000000000..05cf0f8765 --- /dev/null +++ b/ext/POSIX/hints/dynixptx.pl @@ -0,0 +1,4 @@ +# Need to add an extra '-lc' to the end to work around a DYNIX/ptx bug +# PR#227670 - linker error on fpgetround() + +$self->{LIBS} = ['-ldb -lc']; |