Latest update.

This commit is contained in:
2020-05-17 20:27:18 +09:00
parent ad9fce94c2
commit 3a6d64bb68
619 changed files with 13638 additions and 4698 deletions
+23 -1
View File
@@ -1,5 +1,5 @@
#! /usr/bin/env perl
# Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
# Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the Apache License 2.0 (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
@@ -372,6 +372,28 @@ EOF
{ regexp => qr/DEFINE_STACK_OF_CONST<<<\((.*)\)>>>/,
massager => sub { return ("SKM_DEFINE_STACK_OF($1,const $1,$1)"); },
},
{ regexp => qr/DEFINE_STACK_OF_STRING<<<\((.*?)\)>>>/,
massager => sub {
return ("DEFINE_SPECIAL_STACK_OF(OPENSSL_STRING, char)");
}
},
{ regexp => qr/DEFINE_STACK_OF_CSTRING<<<\((.*?)\)>>>/,
massager => sub {
return ("DEFINE_SPECIAL_STACK_OF_CONST(OPENSSL_CSTRING, char)");
}
},
# DEFINE_OR_DECLARE macro calls must be interpretted as DEFINE macro
# calls, because that's what they look like to the external apps.
# (if that ever changes, we must change the substitutions to STACK_OF)
{ regexp => qr/DEFINE_OR_DECLARE_STACK_OF<<<\((.*?)\)>>>/,
massager => sub { return ("DEFINE_STACK_OF($1)"); }
},
{ regexp => qr/DEFINE_OR_DECLARE_STACK_OF_STRING<<<\(\)>>>/,
massager => sub { return ("DEFINE_STACK_OF_STRING()"); },
},
{ regexp => qr/DEFINE_OR_DECLARE_STACK_OF_CSTRING<<<\(\)>>>/,
massager => sub { return ("DEFINE_STACK_OF_CSTRING()"); },
},
#####
# ASN1 stuff