summaryrefslogtreecommitdiff
path: root/docs/backup/win32_build_on_cygwin_using_mingw.txt
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2009-04-02 13:58:11 +0200
committerReinhard Tartler <siretart@tauware.de>2009-04-02 13:58:11 +0200
commita84d45498bd861c9225080232948a99c2e317bb8 (patch)
tree8f1f5fb7bf7ffbf6f24cf4a4fd6888a235dbcc08 /docs/backup/win32_build_on_cygwin_using_mingw.txt
parent25db897553a0db0f912602b375029e724f51556e (diff)
Import upstream version 0.11~rc3~r2491
Diffstat (limited to 'docs/backup/win32_build_on_cygwin_using_mingw.txt')
-rw-r--r--docs/backup/win32_build_on_cygwin_using_mingw.txt53
1 files changed, 0 insertions, 53 deletions
diff --git a/docs/backup/win32_build_on_cygwin_using_mingw.txt b/docs/backup/win32_build_on_cygwin_using_mingw.txt
deleted file mode 100644
index e71b5764..00000000
--- a/docs/backup/win32_build_on_cygwin_using_mingw.txt
+++ /dev/null
@@ -1,53 +0,0 @@
-How to build Box Backup on Win32 using Cygwin and MinGW
-By Chris Wilson, 2007-05-26
-
-(To read this document online with better formatting, browse to:
-http://bbdev.fluffy.co.uk/trac/wiki/CompileWithMinGW)
-
-Start by installing Cygwin on your Windows machine [http://www.cygwin.org].
-Make sure to select the following packages during installation:
-
-* Devel/gcc-mingw
-* Devel/gcc-mingw-core
-* Devel/gcc-mingw-g++
-* Mingw/mingw-zlib
-
-If you already have Cygwin installed, please re-run the installer and
-ensure that those packages are installed.
-
-Download OpenSSL from
-[http://www.openssl.org/source/openssl-0.9.7i.tar.gz]
-
-Open a Cygwin shell, and unpack OpenSSL:
-
- tar xzvf openssl-0.9.7i.tar.gz
-
-Configure OpenSSL for MinGW compilation, and build and install it:
-
- cd openssl-0.9.7i
- ./Configure --prefix=/usr/i686-pc-mingw32/ mingw
- make
- make install
-
-Download PCRE from
-[http://prdownloads.sourceforge.net/pcre/pcre-6.3.tar.bz2?download]
-
-Open a Cygwin shell, and unpack PCRE:
-
- tar xjvf pcre-6.3.tar.bz2
-
-Configure PCRE for MinGW compilation, and build and install it:
-
- cd pcre-6.3
- export CFLAGS="-mno-cygwin"
- ./configure
- make winshared
- cp .libs/libpcre.a .libs/libpcreposix.a /usr/lib/mingw
- cp pcreposix.h /usr/include/mingw
-
-Now unpack the Box Backup sources, enter the source directory,
-and configure like this:
-
- ./infrastructure/mingw/configure.sh
- make
-