diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-06-04 10:53:57 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-06-04 10:53:57 +0000 |
commit | 4d84de11b1fdd795b00086f1901787de358c9230 (patch) | |
tree | b7f2bb294e9dfcdbf26a540cbd38fab6d76ed68f /install-win32/openssl/README.txt | |
parent | Fixed unbounded memory growth bug in (diff) | |
download | openvpn-4d84de11b1fdd795b00086f1901787de358c9230.tar.xz |
Added support for building and linking with
openssl-0.9.8h on Windows.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2982 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | install-win32/openssl/README.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/install-win32/openssl/README.txt b/install-win32/openssl/README.txt new file mode 100644 index 0000000..cebd6ae --- /dev/null +++ b/install-win32/openssl/README.txt @@ -0,0 +1,22 @@ +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.8h.tar.gz.asc + tar xfz openssl-0.9.8h.tar.gz + rm openssl-0.9.8h.tar.gz + tar cfzh openssl-0.9.8h.tar.gz openssl-0.9.8h + +To apply patch (in MSYS shell): + + cd /c/src/openssl-0.9.8h + patch -p1 <../21/install-win32/openssl/openssl098.patch + +To build OpenSSL, open a command prompt window, then: + + cd \src\openssl-0.9.8h + ms\mw + +To build a new patch (optional): + + diff -urw openssl-0.9.8h.orig openssl-0.9.8h | grep -v '^Only in' >openssl098.patch |