From abe53d3c48a6552e136ddc8bc554764daf255a05 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 7 Nov 2005 17:42:49 +0100 Subject: More work on config manager --- doc/BUILD.win32 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/BUILD.win32 (limited to 'doc') diff --git a/doc/BUILD.win32 b/doc/BUILD.win32 new file mode 100644 index 00000000..03e1b8d9 --- /dev/null +++ b/doc/BUILD.win32 @@ -0,0 +1,23 @@ +Instructions for building the Bitlbee Win32 port +================================================ + +1. Download the latest version using bzr (http://www.bazaar-ng.org/): + bzr branch http://jelmer.vernstok.nl/oss/bitlbee/bzr/win32 bitlbee-win32 +2. Download and install the required development files: + from ftp://ftp.gtk.org/pub/gtk/v2.8/win32/ + - glib + - glib-dev + - libiconv + - gettext + from http://ftp.mozilla.org/pub/mozilla.org/ + - nss + - nspr + +I've put them inside c:\dev, so you might have the most with that location. + +3. Open bitlbee.dsw in VC++ and build :-) + +4. Now you're done. When running, make sure all the required DLL's are accessible. If they can't be found, place them inside c:\winnt\system32 or the Debug or Release directories inside bitlbee-...\win32\. + +5. To build setup files, compile the bitlbee.iss file using the Inno Setup + program (available from www.jrsoftware.org). -- cgit v1.2.3 From 2983f5e8c2d3046bf01337e5caefa3af55ba6bff Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 29 Nov 2005 00:32:50 +0100 Subject: Switch to using a Makefile rather then VC project files. --- doc/BUILD.win32 | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'doc') diff --git a/doc/BUILD.win32 b/doc/BUILD.win32 index 03e1b8d9..e21e1aaf 100644 --- a/doc/BUILD.win32 +++ b/doc/BUILD.win32 @@ -1,23 +1,32 @@ -Instructions for building the Bitlbee Win32 port +Instructions for building BitlBee on Windows ================================================ 1. Download the latest version using bzr (http://www.bazaar-ng.org/): - bzr branch http://jelmer.vernstok.nl/oss/bitlbee/bzr/win32 bitlbee-win32 + + H:\> bzr branch http://win32.bitlbee.org/bzr bitlbee-win32 + ... + 2. Download and install the required development files: from ftp://ftp.gtk.org/pub/gtk/v2.8/win32/ - glib - glib-dev - - libiconv - - gettext + - libiconv (in dependencies/) + - gettext (in dependencies/) from http://ftp.mozilla.org/pub/mozilla.org/ - - nss - - nspr + - nss (in security/nss/) + - nspr (in nspr/) + +3. Set the following variables in Makefile.settings, if you don't have the + libraries above installed in the default directories searched by MSVC: -I've put them inside c:\dev, so you might have the most with that location. + - GLIB_DIR + - NSS_DIR + - NSPR_DIR -3. Open bitlbee.dsw in VC++ and build :-) +4. Build: -4. Now you're done. When running, make sure all the required DLL's are accessible. If they can't be found, place them inside c:\winnt\system32 or the Debug or Release directories inside bitlbee-...\win32\. + H:\BitlBee> nmake /f win32.mk + ... 5. To build setup files, compile the bitlbee.iss file using the Inno Setup program (available from www.jrsoftware.org). -- cgit v1.2.3 From 4146a07de5f44f3ea00a3ef0026098b28e7451de Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 17 Dec 2005 02:25:32 +0100 Subject: Fix win32 build using mingw32 on linux (no ssl and yahoo yet though) --- doc/BUILD.win32 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'doc') diff --git a/doc/BUILD.win32 b/doc/BUILD.win32 index e21e1aaf..e00cfdda 100644 --- a/doc/BUILD.win32 +++ b/doc/BUILD.win32 @@ -16,6 +16,9 @@ Instructions for building BitlBee on Windows - nss (in security/nss/) - nspr (in nspr/) + glib and gettext are only required for actually running BitlBee - building + should work fine without them. + 3. Set the following variables in Makefile.settings, if you don't have the libraries above installed in the default directories searched by MSVC: -- cgit v1.2.3 From 73c2dce8961e937e97c78f0b8b0ee4abd347756b Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 10 Jun 2008 05:21:13 +0200 Subject: Update docs, remove obsolete win32-related utilities. --- doc/BUILD.win32 | 37 ++++++------------------------------- 1 file changed, 6 insertions(+), 31 deletions(-) (limited to 'doc') diff --git a/doc/BUILD.win32 b/doc/BUILD.win32 index e00cfdda..e1afe600 100644 --- a/doc/BUILD.win32 +++ b/doc/BUILD.win32 @@ -1,35 +1,10 @@ -Instructions for building BitlBee on Windows -================================================ +Instructions for building BitlBee for Windows +============================================= -1. Download the latest version using bzr (http://www.bazaar-ng.org/): +1) Install the mingw32 compiler - H:\> bzr branch http://win32.bitlbee.org/bzr bitlbee-win32 - ... +2) Compile GLib2 for the target i586-mingw32msvc -2. Download and install the required development files: - from ftp://ftp.gtk.org/pub/gtk/v2.8/win32/ - - glib - - glib-dev - - libiconv (in dependencies/) - - gettext (in dependencies/) - from http://ftp.mozilla.org/pub/mozilla.org/ - - nss (in security/nss/) - - nspr (in nspr/) +3) Cross-compile BitlBee: - glib and gettext are only required for actually running BitlBee - building - should work fine without them. - -3. Set the following variables in Makefile.settings, if you don't have the - libraries above installed in the default directories searched by MSVC: - - - GLIB_DIR - - NSS_DIR - - NSPR_DIR - -4. Build: - - H:\BitlBee> nmake /f win32.mk - ... - -5. To build setup files, compile the bitlbee.iss file using the Inno Setup - program (available from www.jrsoftware.org). +$ ./configure --target=i586-mingw32msvc --ssl=bogus --arch=Windows -- cgit v1.2.3