diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-05-13 13:36:23 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-05-13 13:36:23 +0000 |
commit | a7eef14a3eded1a4af503742ff3e7cb5bfaab0ce (patch) | |
tree | 7b05736b453aafc74fef81ebf0d9e9dcb2c35b38 /install-win32/openssl | |
parent | Added errors-to-stderr option. When enabled, fatal errors (diff) | |
download | openvpn-a7eef14a3eded1a4af503742ff3e7cb5bfaab0ce.tar.xz |
Updated Windows build scripts to package openssl-0.9.8k,
and to use the Server 2008 WDK (6001.18002).
In cryptoapi.c, renamed CryptAcquireCertificatePrivateKey to
OpenVPNCryptAcquireCertificatePrivateKey to work around
a symbol conflict in MinGW-5.1.4.exe.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4318 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'install-win32/openssl')
-rw-r--r-- | install-win32/openssl/README.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/install-win32/openssl/README.txt b/install-win32/openssl/README.txt index 3afb0d4..6a042f4 100644 --- a/install-win32/openssl/README.txt +++ b/install-win32/openssl/README.txt @@ -2,20 +2,20 @@ Rebuild OpenSSL tarball without symbolic links, so it can be extracted on Windows (run on Unix): [download tarball and .asc sig] - gpg --verify openssl-0.9.8i.tar.gz.asc - tar xfz openssl-0.9.8i.tar.gz - tar cfzh openssl-0.9.8i-nolinks.tar.gz openssl-0.9.8i + gpg --verify openssl-0.9.8k.tar.gz.asc + tar xfz openssl-0.9.8k.tar.gz + tar cfzh openssl-0.9.8k-nolinks.tar.gz openssl-0.9.8k To apply patch (in MSYS shell): - cd /c/src/openssl-0.9.8i + cd /c/src/openssl-0.9.8k patch -p1 <../21/install-win32/openssl/openssl098.patch To build OpenSSL, open a command prompt window, then: - cd \src\openssl-0.9.8i + cd \src\openssl-0.9.8k ms\mw To build a new patch (optional): - diff -urw openssl-0.9.8i.orig openssl-0.9.8i | grep -v '^Only in' >openssl098.patch + diff -urw openssl-0.9.8k.orig openssl-0.9.8k | grep -v '^Only in' >openssl098.patch |