summaryrefslogtreecommitdiff
path: root/makedef.pl
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2022-09-23 12:40:05 -0500
committerCraig A. Berry <craigberry@mac.com>2022-09-23 12:40:05 -0500
commit881a2f91cb76930d44b28088c0d7636cd4ca6d57 (patch)
tree22bd3ad0e852c44dcedd282ee57121dc95ba070a /makedef.pl
parent56c95a7ae1063b949a9b8cb3002a4383543c0fb9 (diff)
downloadperl-881a2f91cb76930d44b28088c0d7636cd4ca6d57.tar.gz
Don't export win32-only symbols on non-Windows
This was causing link-time errors in the VMS build because it was trying to export symbols that don't exist.
Diffstat (limited to 'makedef.pl')
-rw-r--r--makedef.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/makedef.pl b/makedef.pl
index 5db33d5de4..11cb5b0d03 100644
--- a/makedef.pl
+++ b/makedef.pl
@@ -279,6 +279,8 @@ if ($ARGS{PLATFORM} ne 'vms') {
if ($ARGS{PLATFORM} ne 'win32') {
++$skip{$_} foreach qw(
Perl_get_win32_message_utf8ness
+ Perl_Win_utf8_string_to_wstring
+ Perl_Win_wstring_to_utf8_string
);
}