InstallingMingwOnWin32
From SalasagaWiki
Terry Stickel was able to build ming on mingw. XP Pro, service pack 2.
The build chain is:
- mingw
- msys
- msysDTK
- wget
- libiconv
- autoconf
- automake
- zlib
These are the mingwPORT versions.
The next three I had to compile from source:
- libtool
- freetype
- libming
To get libming to compile I had to hand edit src/Makefile. I commented out a short routine that needed the .so version of the lib so it could build the php module. The makefile target was called 'all-local'. PHP was disabled according to configure. It never made libming.so. Don't know why the Makefile didn't get created correctly, I'm looking at the autoconf stuff now.
2008-07-24 JustinClift
This looks coherent and sensible for setting up Mingw:
http://mathieu.carbou.free.fr/wiki/index.php?title=Setup_and_configure_MinGW
Note the m4 version in it is "known good", whereas the included one is too old for some things to use (i.e. building autoconf), and the latest GNU source of m4 (1.4.11) seems to compile and install fine, but is actually broken and causes problems when compiling other things.
Another link, potentially better developed, is here:
http://wiki.filezilla-project.org/Compiling_FileZilla_3_under_Windows
Seems to be much more recently maintained.

