summaryrefslogtreecommitdiffstats
path: root/util
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
parent33ab4699ba2466260504e65349ac93c1a94529d9 (diff)
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')
-rwxr-xr-xutil/libeay.num5
-rwxr-xr-xutil/mkdef.pl2
2 files changed, 6 insertions, 1 deletions
diff --git a/util/libeay.num b/util/libeay.num
index 0323374c1a..eaf9e152bc 100755
--- a/util/libeay.num
+++ b/util/libeay.num
@@ -2516,3 +2516,8 @@ UI_add_info_string 2978 EXIST::FUNCTION:
UI_get_result_minsize 2979 EXIST::FUNCTION:
UI_new 2980 EXIST::FUNCTION:
UI_method_set_reader 2981 EXIST::FUNCTION:
+X509_STORE_set_flags 2982 EXIST::FUNCTION:
+X509_PURPOSE_set 2983 EXIST::FUNCTION:
+X509_TRUST_set 2984 EXIST::FUNCTION:
+X509_STORE_set_purpose 2985 EXIST::FUNCTION:
+X509_STORE_set_trust 2986 EXIST::FUNCTION:
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;