Don't blockquote pre blocks.
[wiki] / examples / cross-compiling-windows-binary.mdwn
index 27ea13b..fbfba1e 100644 (file)
@@ -24,8 +24,8 @@ The idea is simple:
 
 There are only a few packages that need to be installed as root to get started:
 
->     sudo apt-get install mingw32 wine git-core
->     sudo apt-get build-dep tinc
+       sudo apt-get install mingw32 wine git-core
+       sudo apt-get build-dep tinc
 
 Other Linux distributions may also have MinGW packages, use their respective
 package management tools to install them.  Debian installs the cross-compiler
@@ -40,10 +40,10 @@ We will create a directory called `mingw/` in the home directory.  We use
 apt-get to get the required libraries necessary for tinc, and use `git` to get
 the latest development version of tinc.
 
->     mkdir $HOME/mingw
->     cd $HOME/mingw
->     apt-get source openssl liblzo2-dev zlib1g-dev
->     git clone git://tinc-vpn.org/tinc
+       mkdir $HOME/mingw
+       cd $HOME/mingw
+       apt-get source openssl liblzo2-dev zlib1g-dev
+       git clone git://tinc-vpn.org/tinc
 
 ### Making cross-compilation easy
 
@@ -51,20 +51,20 @@ To make cross-compiling easy, we create a script called `mingw` that will set
 up the necessary environment variables so configure scripts and Makefiles will
 use the MinGW version of GCC and binutils:
 
->     mkdir $HOME/bin
->     cat >$HOME/bin/mingw << EOF
->     #!/bin/sh
->     export CC=i586-mingw32msvc-gcc
->     export CXX=i586-mingw32msvc-g++
->     export CPP=i586-mingw32msvc-cpp
->     export RANLIB=i586-mingw32msvc-ranlib
->     export PATH="/usr/i586-mingw32msvc/bin:$PATH"
->     exec "$@"
->     EOF
+       mkdir $HOME/bin
+       cat >$HOME/bin/mingw << EOF
+       #!/bin/sh
+       export CC=i586-mingw32msvc-gcc
+       export CXX=i586-mingw32msvc-g++
+       export CPP=i586-mingw32msvc-cpp
+       export RANLIB=i586-mingw32msvc-ranlib
+       export PATH="/usr/i586-mingw32msvc/bin:$PATH"
+       exec "$@"
+       EOF
 
 If `$HOME/bin` is not already part of your `$PATH`, you need to add it:
 
->     export PATH="$HOME/bin:$PATH"
+       export PATH="$HOME/bin:$PATH"
 
 We use this script to call `./configure` and `make` with the right environment
 variables, but only when the `./configure` script doesn't support cross-compilation itself.
@@ -78,20 +78,20 @@ time it is needed.
 
 Cross-compiling LZO is easy:
 
->     cd $HOME/mingw/lzo2-2.03
->     ./configure --host=i586-mingw32msvc
->     make
->     DESTDIR=$HOME/mingw make install
+       cd $HOME/mingw/lzo2-2.03
+       ./configure --host=i586-mingw32msvc
+       make
+       DESTDIR=$HOME/mingw make install
 
 ### Compiling Zlib
 
 Cross-compiling Zlib is also easy, but a plain `make` failed to compile the
 tests, so we only build the static library here:
 
->     cd $HOME/mingw/zlib-1.2.3.3.dfsg
->     mingw ./configure
->     mingw make libz.a
->     DESTDIR=$HOME/mingw mingw make install
+       cd $HOME/mingw/zlib-1.2.3.3.dfsg
+       mingw ./configure
+       mingw make libz.a
+       DESTDIR=$HOME/mingw mingw make install
 
 ### Compiling OpenSSL
 
@@ -102,11 +102,11 @@ this [[openssl-cross-compilation.diff]] to your home directory, then patch
 OpenSSL, and then compile as usual.  Do not use the `-j` option when compiling
 OpenSSL, it will break.
 
->     cd $HOME/mingw/openssl-0.9.8k
->     patch < $HOME/openssl-cross-compilation.diff
->     mingw ./Configure --openssldir=$HOME/mingw/usr/local mingw
->     mingw make
->     mingw make install
+       cd $HOME/mingw/openssl-0.9.8k
+       patch < $HOME/openssl-cross-compilation.diff
+       mingw ./Configure --openssldir=$HOME/mingw/usr/local mingw
+       mingw make
+       mingw make install
 
 ### Compiling tinc
 
@@ -115,10 +115,10 @@ tinc.  Since we use a clone of the git repository here, we need to run
 `autoreconf` first. If you want to cross-compile tinc from a released tarball,
 this is not necessary.
 
->     cd $HOME/mingw/tinc
->     autoreconf -fsi
->     ./configure --host=i586-mingw32msvc --with-openssl=$HOME/mingw/usr/local
->     make
+       cd $HOME/mingw/tinc
+       autoreconf -fsi
+       ./configure --host=i586-mingw32msvc --with-openssl=$HOME/mingw/usr/local
+       make
 
 ### Testing tinc
 
@@ -126,5 +126,5 @@ Since Wine was installed, you can execute the resulting binary even on Linux.
 You cannot do much however, since tinc requires a TAP-Win32 device, which is
 not available in Wine. Still, the following command should work:
 
->     $HOME/mingw/tinc/src/tincd.exe --help
+       $HOME/mingw/tinc/src/tincd.exe --help