From a76b6481754efe93c8fd83bfbf53f4409c2e6e8d Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Mon, 8 Jul 2013 10:39:50 +0200 Subject: 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) --- lib/ExtUtils/Embed.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/ExtUtils') diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm index 758e24139c..8953ce7db3 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){ -- cgit v1.2.1