summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES9
-rw-r--r--ms/mw.bat2
-rwxr-xr-xutil/do_ms.sh6
-rwxr-xr-xutil/libeay.num21
-rwxr-xr-xutil/mk1mf.pl2
5 files changed, 33 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
index a35bf73e72..fb94adaa77 100644
--- a/CHANGES
+++ b/CHANGES
@@ -5,9 +5,13 @@
Changes between 0.9.3a and 0.9.4
- *) New configuration variant "bsdi-elf-gcc" (BSD/OS 4.x)
+ *) Additional typesafe stacks.
+ [Ben Laurie]
+
+ *) New configuration variant "bsdi-elf-gcc" (BSD/OS 4.x).
[Bodo Moeller]
+
Changes between 0.9.3 and 0.9.3a [29 May 1999]
*) New configuration variant "sco5-gcc".
@@ -34,6 +38,7 @@
*) Improvements for VMS support.
[Richard Levitte]
+
Changes between 0.9.2b and 0.9.3 [24 May 1999]
*) Bignum library bug fix. IRIX 6 passes "make test" now!
@@ -378,7 +383,7 @@
[Ulf Möller]
*) Tweaks to Configure
- Niels Poppe <niels@netbox.org>
+ [Niels Poppe <niels@netbox.org>]
*) Add support for PKCS#5 v2.0 ASN1 PBES2 structures. No other support,
yet...
diff --git a/ms/mw.bat b/ms/mw.bat
index e6cf95728a..dc37913b71 100644
--- a/ms/mw.bat
+++ b/ms/mw.bat
@@ -5,7 +5,7 @@
perl util\mkfiles.pl >MINFO
perl util\mk1mf.pl Mingw32 >ms\mingw32.mak
perl util\mk1mf.pl Mingw32-files >ms\mingw32f.mak
-@rem DLL defintion files
+@rem DLL definition files
perl util\mkdef.pl 32 libeay >ms\libeay32.def
if errorlevel 1 goto end
perl util\mkdef.pl 32 ssleay >ms\ssleay32.def
diff --git a/util/do_ms.sh b/util/do_ms.sh
index 98e56400b0..515b074cff 100755
--- a/util/do_ms.sh
+++ b/util/do_ms.sh
@@ -5,11 +5,11 @@
PATH=util:../util:$PATH
-# perl util/mk1mf.pl VC-MSDOS no-sock >ms/msdos.mak
+# perl util/mk1mf.pl no-sock VC-MSDOS >ms/msdos.mak
# perl util/mk1mf.pl VC-W31-32 >ms/w31.mak
-perl util/mk1mf.pl VC-WIN16 dll >ms/w31dll.mak
+perl util/mk1mf.pl dll VC-WIN16 >ms/w31dll.mak
# perl util/mk1mf.pl VC-WIN32 >ms/nt.mak
-perl util/mk1mf.pl VC-WIN32 dll >ms/ntdll.mak
+perl util/mk1mf.pl dll VC-WIN32 >ms/ntdll.mak
perl util/mk1mf.pl Mingw32 >ms/mingw32.mak
perl util/mk1mf.pl Mingw32-files >ms/mingw32f.mak
diff --git a/util/libeay.num b/util/libeay.num
index 604295ba7b..fc2f93cc5e 100755
--- a/util/libeay.num
+++ b/util/libeay.num
@@ -1628,3 +1628,24 @@ d2i_ASN1_UINTEGER 1652
sk_value 1653
sk_num 1654
sk_set 1655
+sk_X509_REVOKED_set_cmp_func 1656
+sk_X509_REVOKED_unshift 1657
+sk_X509_REVOKED_dup 1658
+sk_X509_REVOKED_free 1659
+sk_X509_REVOKED_new 1660
+i2d_ASN1_SET_OF_X509_REVOKED 1661
+sk_X509_REVOKED_shift 1662
+sk_X509_REVOKED_delete_ptr 1663
+sk_X509_REVOKED_pop_free 1664
+sk_X509_REVOKED_insert 1665
+sk_X509_REVOKED_zero 1666
+sk_X509_REVOKED_pop 1667
+sk_X509_REVOKED_value 1668
+sk_X509_REVOKED_num 1669
+sk_X509_REVOKED_push 1670
+sk_sort 1671
+sk_X509_REVOKED_find 1672
+sk_X509_REVOKED_delete 1673
+d2i_ASN1_SET_OF_X509_REVOKED 1674
+sk_X509_REVOKED_new_null 1675
+sk_X509_REVOKED_set 1676
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index fa2149e8ac..e1e9985063 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -45,7 +45,7 @@ foreach (@ARGV)
if (!&read_options && !defined($ops{$_}))
{
print STDERR "unknown option - $_\n";
- print STDERR "usage: perl mk1mf.pl [system] [options]\n";
+ print STDERR "usage: perl mk1mf.pl [options] [system]\n";
print STDERR "\nwhere [system] can be one of the following\n";
foreach $i (sort keys %ops)
{ printf STDERR "\t%-10s\t%s\n",$i,$ops{$i}; }