From: Nicholas Clark Date: Mon, 8 Jul 2013 08:39:50 +0000 (+0200) Subject: Propagate bugfixes from {mini,}perlmain.c into ExtUtils::Embed. X-Git-Tag: v5.19.2~137^2~8 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/a76b6481754efe93c8fd83bfbf53f4409c2e6e8d?hp=566e3efea3c525320e489c80ef426a6cfc5df4a1 Propagate bugfixes from {mini,}perlmain.c into ExtUtils::Embed. xs_init() must pass a static char* when creating &DynaLoader::boot_DynaLoader (commit 1b77350017006d9e) Avoid linker errors on Win32 by including perlapi.h (via XSUB.h) (commit 3ecadf9633330795) my_perl might be unused (commit 96a5add60f1f39d3) --- diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm index 758e241..8953ce7 100644 --- a/lib/ExtUtils/Embed.pm +++ b/lib/ExtUtils/Embed.pm @@ -85,6 +85,7 @@ sub xsi_header { return < #include +#include EOF } @@ -109,8 +110,9 @@ sub xsi_body { my(@exts) = @_; my($pname,@retval,%seen); my($dl) = canon('/','DynaLoader'); - push(@retval, "\tchar *file = __FILE__;\n"); - push(@retval, "\tdXSUB_SYS;\n") if $] > 5.002; + push(@retval, "\tstatic const char file[] = __FILE__;\n"); + push(@retval, "\tdXSUB_SYS;\n"); + push(@retval, "\tPERL_UNUSED_CONTEXT;\n"); push(@retval, "\n"); foreach $_ (@exts){