diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-21 03:42:21 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-21 03:42:21 +0000 |
commit | e3b8966e2a0e0357b86674327ee528dbb5f122a6 (patch) | |
tree | ea57e05a591964f3904bd50af9c6059668286fc1 /lib/ExtUtils/Mksymlists.pm | |
parent | 3dfd1da1ac911ed5d5b4e3956b485ad9af14a10f (diff) | |
download | perl-e3b8966e2a0e0357b86674327ee528dbb5f122a6.tar.gz |
[asperl] add AS patch#17
p4raw-id: //depot/asperl@893
Diffstat (limited to 'lib/ExtUtils/Mksymlists.pm')
-rw-r--r-- | lib/ExtUtils/Mksymlists.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ExtUtils/Mksymlists.pm b/lib/ExtUtils/Mksymlists.pm index 4ac175af5e..2f2366a1c8 100644 --- a/lib/ExtUtils/Mksymlists.pm +++ b/lib/ExtUtils/Mksymlists.pm @@ -178,6 +178,13 @@ sub _write_vms { } close OPT; + # Options file specifying RTLs to which this extension must be linked. + # Eventually, the list of libraries will be supplied by a working + # extliblist routine. + open OPT,'>rtls.opt'; + print OPT "PerlShr/Share\n"; + foreach $rtl (split(/\s+/,$Config::Config{'libs'})) { print OPT "$rtl\n"; } + close OPT; } 1; |