diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-10-09 15:37:41 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-10-09 15:37:41 +0000 |
commit | ce87d91c2356e5fb8cc780255277325e7efd97f1 (patch) | |
tree | 8720ee8f2e438da357dbc6299882e4a7f9e41336 /lib/ExtUtils | |
parent | c0888b2172d1f2ba9efb15c34b86c07026be9abe (diff) | |
download | perl-ce87d91c2356e5fb8cc780255277325e7efd97f1.tar.gz |
It would be nice to upgrade the right file. Double grrrrr.
p4raw-id: //depot/perl@25720
Diffstat (limited to 'lib/ExtUtils')
-rw-r--r-- | lib/ExtUtils/CBuilder.pm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/ExtUtils/CBuilder.pm b/lib/ExtUtils/CBuilder.pm index 3063a81719..42be3550a3 100644 --- a/lib/ExtUtils/CBuilder.pm +++ b/lib/ExtUtils/CBuilder.pm @@ -5,7 +5,7 @@ use File::Path (); use File::Basename (); use vars qw($VERSION @ISA); -$VERSION = '0.14_01'; +$VERSION = '0.15'; $VERSION = eval $VERSION; # Okay, this is the brute-force method of finding out what kind of @@ -261,6 +261,7 @@ options, as follows: DL_FUNCS | dl_funcs | hash reference FUNCLIST | dl_func_list | array reference IMPORTS | dl_imports | hash reference + VERSION | dl_version | string Please see the documentation for C<ExtUtils::Mksymlists> for the details of what these parameters do. @@ -270,6 +271,12 @@ details of what these parameters do. Returns true on platforms where C<prelink()> should be called during linking, and false otherwise. +=item extra_link_args_after_prelink + +Returns list of extra arguments to give to the link command; the arguments +are the same as for prelink(), with addition of array reference to the +results of prelink(); this reference is indexed by key C<prelink_res>. + =back =head1 TO DO @@ -283,7 +290,9 @@ that next. This module is an outgrowth of the C<Module::Build> project, to which there have been many contributors. Notably, Randy W. Sims submitted lots of code to support 3 compilers on Windows and helped with various -other platform-specific issues. +other platform-specific issues. Ilya Zakharevich has contributed +fixes for OS/2; John E. Malmberg and Peter Prymmer have done likewise +for VMS. =head1 AUTHOR |