On Tue Sep 17 01:24:49 2013, alanh wrote: > > Let me know when to grab something to test. > > Alan. > To move this ticket along. As a 3rd party who understands very little of this ticket, I think you need to remove the double to single quotes change in Configure. Also your patch is a diff patch, not a git patch. Here at p5p, we prefer, but don't require, git patches with commit messages. Mention this ticket number in the commit message body. Also since dld was removed per http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2013-09/msg00174.html , this patch seems uncommitable now. Note the OP diff patch is from 5.12, not 5.19. Also, some [of my] questions to answer either here in this ticket or in commit message. Why did the fixed stack size change in the OS? ____________________________________________________ diff -ur perl-5.12.3/ext/DynaLoader/dl_dld.xs perl-5.12.3-mint/ext/DynaLoader/dl_dld.xs --- perl-5.12.3/ext/DynaLoader/dl_dld.xs 2010-11-21 21:40:55.000000000 +0000 +++ perl-5.12.3-mint/ext/DynaLoader/dl_dld.xs 2011-02-21 09:38:51.000000000 +0000 @@ -116,6 +116,18 @@ goto haverror; } + DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dld_link(libm.a)\n")); + if (dlderr = dld_link("/usr/lib/libm.a")) { + SaveError(aTHX_ "dld_link(libm.a): %s", dld_strerror(dlderr)); + goto haverror; + } + + DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dld_link(libc.a)\n")); + if (dlderr = dld_link("/usr/lib/libc.a")) { + SaveError(aTHX_ "dld_link(libc.a): %s", dld_strerror(dlderr)); + goto haverror; + } + max = AvFILL(dl_resolve_using); for (x = 0; x <= max; x++) { char *sym = SvPVX(*av_fetch(dl_resolve_using, x, 0)); ____________________________________________________ Why more error cases for dld? -- bulk88 ~ bulk88 at hotmail.com --- via perlbug: queue: perl5 status: open https://rt.perl.org/Ticket/Display.html?id=89502Thread Previous