From 3518b8ef5c8aab8ee4e8be714989e4090ac95942 Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Sat, 16 Dec 2006 21:20:04 +0000 Subject: [PATCH] Expanded MinGW/MSYS GCC compilation instructions for building Win32. --- docs/CHANGES.txt | 3 +++ docs/INSTALL.txt | 29 +++++++++++++++++++++-------- 2 files changed, 24 insertions(+), 8 deletions(-) diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 9de2e4a83..8dcc7db39 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -32,6 +32,9 @@ $Id$ * Listing new www.tuxpaint.org website URL. + * Expanded MinGW/MSYS GCC compilation instructions for building Win32. + + * Translation Updates: -------------------- * Basque diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt index 676744960..683b46a31 100644 --- a/docs/INSTALL.txt +++ b/docs/INSTALL.txt @@ -2,11 +2,11 @@ INSTALL.txt for Tux Paint Tux Paint - A simple drawing program for children. -Copyright 2006 by Bill Kendrick and others +Copyright 2002-2006 by Bill Kendrick and others bill@newbreedsoftware.com http://www.tuxpaint.org/ -June 27, 2002 -October 26, 2006 +June 27, 2002 - December 16, 2006 $Id$ @@ -107,16 +107,29 @@ Compiling and Installation: necessary. As of February 2005 (starting with Tux Paint 0.9.15), the Makefile - included support for building on a Windows system using MinGW/MSYS. + includes support for building on a Windows system using MinGW/MSYS. + ( http://www.mingw.org/ ) After building and installing all the dependencies, use these commands, in MSYS, to build, install and run: - export set CPATH=/usr/local/include - export set LIBRARY_PATH=/usr/local/bin:/usr/local/lib - make win32 - make install-win32 - tuxpaint + $ export set CPATH=/usr/local/include + $ export set LIBRARY_PATH=/usr/local/bin:/usr/local/lib + $ make win32 + $ make install-win32 + $ tuxpaint + + Or use the following command to build a version suitable for + redistribution with the installer or in a zip-file: + + $ make bdist-win32 + + Before either of these will work, you need to build or install the + libraries that Tux Paint depends upon. John Popplewell put together some + instructions for doing that here: + + http://johnnypops.demon.co.uk/mingw/index.html + Installer: ----------