From e18249a59ddbc899823227d1eaead27682016237 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Mon, 22 Aug 2011 06:38:32 +0200 Subject: [PATCH] boot_Win32CORE needs to be XS_EXTERNAL() following commit ab1478f7146843f7. Win32CORE.c is shipped as a C file, not built by ExtUtils::ParseXS, so needs to be manually updated to reflect the change of default in XSUB.h --- ext/Win32CORE/Win32CORE.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/Win32CORE/Win32CORE.c b/ext/Win32CORE/Win32CORE.c index 9863b5b..fba6f55 100644 --- a/ext/Win32CORE/Win32CORE.c +++ b/ext/Win32CORE/Win32CORE.c @@ -61,7 +61,7 @@ FORWARD(Sleep) #undef FORWARD -XS(boot_Win32CORE) +XS_EXTERNAL(boot_Win32CORE) { /* This function only exists because writemain.SH, lib/ExtUtils/Embed.pm * and win32/buildext.pl will all generate references to it. The function -- 1.8.3.1