In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/b909715e42ed1b230a40f6bf307cf69b80b30462?hp=9317a64cd99e51d621dc63e76e2f0cd31b12e02e>

- Log -----------------------------------------------------------------
commit b909715e42ed1b230a40f6bf307cf69b80b30462
Author: James E Keenan <[email protected]>
Date:   Fri Jul 26 22:10:58 2013 -0400

    Document $DynaLoader::dl_dlext, per sisyphus++.
    
    With one modification suggested by Andy Dougherty; version bump to 1.19.
    
    For: RT #119031
-----------------------------------------------------------------------

Summary of changes:
 ext/DynaLoader/DynaLoader_pm.PL | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/ext/DynaLoader/DynaLoader_pm.PL b/ext/DynaLoader/DynaLoader_pm.PL
index 562ba2d..908bacc 100644
--- a/ext/DynaLoader/DynaLoader_pm.PL
+++ b/ext/DynaLoader/DynaLoader_pm.PL
@@ -85,7 +85,7 @@ package DynaLoader;
 # [email protected], August 1994
 
 BEGIN {
-    $VERSION = '1.18';
+    $VERSION = '1.19';
 }
 
 use Config;
@@ -678,6 +678,19 @@ built with the B<-DDEBUGGING> flag.  This can also be set 
via the
 PERL_DL_DEBUG environment variable.  Set to 1 for minimal information or
 higher for more.
 
+=item $dl_dlext
+
+When specified (localised) in a module's F<.pm> file, indicates the extension
+which the module's loadable object will have. For example:
+
+    local $DynaLoader::dl_dlext = 'unusual_ext';
+
+would indicate that the module's loadable object has an extension of
+C<unusual_ext> instead of the more usual C<$Config{dlext}>.  NOTE: This also
+requires that the module's F<Makefile.PL> specify (in C<WriteMakefile()>):
+
+    DLEXT => 'unusual_ext',
+
 =item dl_findfile()
 
 Syntax:

--
Perl5 Master Repository

Reply via email to