forked from level7systems/stunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.W32
51 lines (36 loc) · 1.48 KB
/
INSTALL.W32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
stunnel Windows install notes
Building stunnel from source (optional):
1) Install mingw32 cross-compiler o a Unix/Linux machine.
In Debian all you need is:
apt-get install gcc-mingw-w64-i686
Native compilation on a Windows machine is possible, but not supported.
2) Download the recent zlib from http://www.zlib.net/
Update the following definitions in win32/Makefile.gcc file:
SHARED_MODE=1
PREFIX = i686-w64-mingw32-
then build zlib with:
make -f win32/Makefile.gcc
and install it in mingw32 tree:
sudo BINARY_PATH=~/ \
INCLUDE_PATH=/usr/i686-w64-mingw32/include/ \
LIBRARY_PATH=/usr/i686-w64-mingw32/lib/ \
make -f win32/Makefile.gcc install
3) Download the recent OpenSSL in unpack it to /usr/src/ directory.
cd /usr/src
tar zvxf ~/openssl-(version).tar.gz
mv openssl-(version) openssl-(version)-i686
4) Build OpenSSL.
./Configure --cross-compile-prefix=i686-w64-mingw32- mingw shared zlib-dynamic
make
5) Download and unpack stunnel-(version).tar.gz.
6) Configure stunnel.
cd stunnel-(version)
./configure --with-ssl=/path/to/openssl-(version)
7) Build windows executable.
cd src
make stunnel.exe
Installing stunnel:
1) run installer to install precompiled binaries or copy stunnel.exe and
OpenSSL DLLs into a directory
2) read the manual (stunnel.html)
3) create/edit stunnel.conf configuration file