-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PATCH 11/11] XSLoader 0.21: use dl_find_symbol 3rd optional argument #14588
Comments
From @rurbangenerated with the help of perlbug 1.40 running under perl 5.21.9. XSLoader 0.21: use dl_find_symbol 3rd optional argument CPAN is upstream, but for completeness I post it here also. Flags: Site configuration information for perl 5.21.9: Configured by rurban at Sun Feb 22 17:14:55 CET 2015. Summary of my perl5 (revision 5 version 21 subversion 9) configuration: Locally applied patches: @INC for perl 5.21.9: Environment for perl 5.21.9: |
From @rurban0004-XSLoader-0.21-use-dl_find_symbol-3rd-optional-argume.patchFrom 046d5f370efd4eed4702f9cdd75cac2b5a7bcb82 Mon Sep 17 00:00:00 2001
From: Reini Urban <rurban@cpanel.net>
Date: Sat, 14 Mar 2015 00:31:41 +0100
Subject: [PATCH 4/4] XSLoader 0.21: use dl_find_symbol 3rd optional argument
to skip the worthless dl_last_error message
---
dist/XSLoader/XSLoader_pm.PL | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git dist/XSLoader/XSLoader_pm.PL dist/XSLoader/XSLoader_pm.PL
index 414eaf2..d518d10 100644
--- dist/XSLoader/XSLoader_pm.PL
+++ dist/XSLoader/XSLoader_pm.PL
@@ -10,7 +10,7 @@ print OUT <<'EOT';
package XSLoader;
-$VERSION = "0.20";
+$VERSION = "0.21";
#use strict;
@@ -123,10 +123,11 @@ print OUT <<'EOT';
EOT
if ($^O eq 'darwin') {
-print OUT <<'EOT';
- if ($boot_symbol_ref = dl_find_symbol(0, $bootname)) {
- goto boot; #extension library has already been loaded, e.g. darwin
- }
+ my $extra_arg = ', 1 ' if $DynaLoader::VERSION ge '1.33';
+print OUT <<"EOT";
+ if (\$boot_symbol_ref = dl_find_symbol( 0, \$bootname $extra_arg)) {
+ goto boot; #extension library has already been loaded, e.g. darwin
+ }
EOT
}
--
2.1.4
|
From @tonycozOn Sat Mar 14 03:58:57 2015, rurban@cpanel.net wrote:
XSLoader is blead-upstream. Tony |
The RT System itself - Status changed from 'new' to 'open' |
From @tonycozOn Sat Mar 14 03:58:57 2015, rurban@cpanel.net wrote:
Applied as c35721e, which a modified version check. Tony |
@tonycoz - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#124069 (status was 'resolved')
Searchable as RT124069$
The text was updated successfully, but these errors were encountered: