summaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-08-05 10:57:47 +0200
committerRichard Levitte <levitte@openssl.org>2016-08-05 21:18:15 +0200
commit74656a82e606d7b4924166d459d18677ea83f9d8 (patch)
treeab2cbcd653bee66ce17cf9bd16b78ea41e676eaa /util/mkdef.pl
parentb4aaf194f05edc7c4e4b04758c094fe8bdd04e89 (diff)
util/mkdef.pl: mark certain PEM function declarations with STDIO
The macros that produce PEM_write_FOO() andd PEM_read_FOO() only do so unless 'no-stdio' has been configured. mkdef.pl should mimic that by marking those functions with the "STDIO" algo. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index fa37ccb3e0..b54c925c4c 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -815,7 +815,7 @@ sub do_defs
$def .=
"#INFO:"
.join(',',@current_platforms).":"
- .join(',',@current_algorithms).";";
+ .join(',',"STDIO",@current_algorithms).";";
$def .= "int PEM_read_$1(void);";
$def .= "int PEM_write_$1(void);";
$def .=
@@ -832,7 +832,7 @@ sub do_defs
$def .=
"#INFO:"
.join(',',@current_platforms).":"
- .join(',',@current_algorithms).";";
+ .join(',',"STDIO",@current_algorithms).";";
$def .= "int PEM_write_$1(void);";
$def .=
"#INFO:"
@@ -846,12 +846,12 @@ sub do_defs
$def .=
"#INFO:"
.join(',',@current_platforms).":"
- .join(',',@current_algorithms).";";
+ .join(',',"STDIO",@current_algorithms).";";
$def .= "int PEM_read_$1(void);";
$def .=
"#INFO:"
.join(',',@current_platforms).":"
- .join(',',@current_algorithms).";";
+ .join(',',"STDIO",@current_algorithms).";";
# Things that are everywhere
$def .= "int PEM_read_bio_$1(void);";
next;