aboutsummaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-05-12 23:57:41 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-05-12 23:57:41 +0000
commit4831e626aa69d24399d0a65b9e7512a6e21b6b2a (patch)
treea62b9d8e5e29353d469874b3fdc8660685902751 /util/mkdef.pl
parent33ab4699ba2466260504e65349ac93c1a94529d9 (diff)
downloadopenssl-4831e626aa69d24399d0a65b9e7512a6e21b6b2a.tar.gz
Change Win32 to use EXPORT_VAR_AS_FN.
Fix OPENSSL_IMPLEMENT_GLOBAL. Allow Win32 to use EXPORT_VAR_AS_FN in mkdef.pl make update.
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index deb02a9036..2c003c4b23 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -994,7 +994,7 @@ sub is_valid
# EXPORT_VAR_AS_FUNCTION means that global variables
# will be represented as functions. This currently
# only happens on VMS-VAX.
- if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && $VMSVAX) {
+ if ($keyword eq "EXPORT_VAR_AS_FUNCTION" && ($VMSVAX || $W32)) {
return 1;
}
return 0;