aboutsummaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-01-31 17:30:18 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-01-31 17:30:18 +0000
commit9b3086fe382e7b0f53b8634d0e75f1a659ab2653 (patch)
tree462330501c21d687e5389fed2b76ab350db16ffa /util/mkdef.pl
parentd433f9014edac49202f34ba464534eafd4bf6701 (diff)
downloadopenssl-9b3086fe382e7b0f53b8634d0e75f1a659ab2653.tar.gz
Fix various stuff: that VC++ 5.0 chokes on:
1. Add *lots* of missing prototypes for static ssl functions. 2. VC++ doesn't understand the 'LL' suffix for 64 bits constants: change bn.org 3. Add a few missing prototypes in pem.org Fix mk1mf.pl so it outputs a Makefile that doesn't choke Win95. Fix mkdef.pl so it doesn't truncate longer names.
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index a62e3eef82..5b2f355bb4 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -231,12 +231,12 @@ sub print_def_file
print OUT <<"EOF";
;
-; Definition file for the DDL version of the $name library from SSLeay
+; Definition file for the DLL version of the $name library from OpenSSL
;
LIBRARY $name
-DESCRIPTION 'SSLeay $name - eay\@cryptsoft.com'
+DESCRIPTION 'OpenSSL $name - http://www.openssl.org/'
EOF
@@ -270,7 +270,7 @@ EOF
else
{
$n=$nums{$func};
- printf OUT " %s%-35s@%d\n",($NT)?"":"_",$func,$n;
+ printf OUT " %s%-40s@%d\n",($NT)?"":"_",$func,$n;
}
}
printf OUT "\n";