aboutsummaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-05-08 22:46:51 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-05-08 22:46:51 +0000
commita5ab0532caf9a11f20eeb49b78ddc8e90f64a418 (patch)
tree342738b8653ea2833844035a0a6956e335a044a8 /util/mkdef.pl
parente40b7abeed32f51f57e4578254aa1559762a8ea2 (diff)
downloadopenssl-a5ab0532caf9a11f20eeb49b78ddc8e90f64a418.tar.gz
Various Win32 fixes. Win95 doesn't support MoveFileEx() (which was used for a
Win32 version of rename() ). There isn't a precise rename() equivalent under Win95: the standard rename() complains if the destination already exists so replaced with a combination of unlink() and MoveFile().
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 61ac7be1e5..4576c76144 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -219,14 +219,16 @@ sub do_defs
$funcs{"sk_${1}_set"} = 1;
$funcs{"sk_${1}_zero"} = 1;
$funcs{"sk_${1}_push"} = 1;
- $funcs{"sk_${1}_pop"} = 1;
+ $funcs{"sk_${1}_unshift"} = 1;
$funcs{"sk_${1}_find"} = 1;
$funcs{"sk_${1}_delete"} = 1;
$funcs{"sk_${1}_delete_ptr"} = 1;
+ $funcs{"sk_${1}_insert"} = 1;
$funcs{"sk_${1}_set_cmp_func"} = 1;
$funcs{"sk_${1}_dup"} = 1;
$funcs{"sk_${1}_pop_free"} = 1;
$funcs{"sk_${1}_shift"} = 1;
+ $funcs{"sk_${1}_pop"} = 1;
} elsif ($safe_stack_def &&
/^\s*DECLARE_ASN1_SET_OF\s*\(\s*(\w*)\s*\)/) {
$funcs{"d2i_ASN1_SET_OF_${1}"} = 1;