diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-08-22 06:38:32 +0200 |
---|---|---|
committer | Jan Dubois <jand@activestate.com> | 2011-08-21 22:57:06 -0700 |
commit | e18249a59ddbc899823227d1eaead27682016237 (patch) | |
tree | f75da796e5d136bc6c0d9e6b63c05cebc3d9d8ac /ext/Win32CORE | |
parent | 5e9f035f8d446559413d76fd5d6d3d2491aa35eb (diff) | |
download | perl-e18249a59ddbc899823227d1eaead27682016237.tar.gz |
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
Diffstat (limited to 'ext/Win32CORE')
-rw-r--r-- | ext/Win32CORE/Win32CORE.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Win32CORE/Win32CORE.c b/ext/Win32CORE/Win32CORE.c index 9863b5b51a..fba6f555f0 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 |