Difference between revisions of "HowTo compile on Win32 with MinGW"
Line 35: | Line 35: | ||
== Compilation == | == Compilation == | ||
− | The compilation itself | + | The compilation itself is actually just a matter of following the usual method: ''./configure && make'' |
However, [http://www.zlib.org zlib] detection might fail. If that's the case, you need to add ''--with-zlib=/local/'' to your configure flags. | However, [http://www.zlib.org zlib] detection might fail. If that's the case, you need to add ''--with-zlib=/local/'' to your configure flags. | ||
Line 41: | Line 41: | ||
== Compiling with [http://www.parinya.ca/mingwstudio.html MinGW Studio] == | == Compiling with [http://www.parinya.ca/mingwstudio.html MinGW Studio] == | ||
− | '''NOTE:''' The compilation with [http://www.parinya.ca/mingwstudio.html MinGW Studio] is deprecated right now and | + | '''NOTE:''' The compilation with [http://www.parinya.ca/mingwstudio.html MinGW Studio] is deprecated right now and currently does not. It might work again in the future. |
− | + | As of 2004/07/17, you can find, in [http://www.gnu.org/software/cvs CVS], the file ''amule.msp'' which is the project file relative to the [http://www.parinya.ca/mingwstudio.html MinGW Studio] IDE ([http://www.gnu.org/philosophy/free-sw.html Free] and under [http://www.gnu.org/copyleft/gpl.html GPL] at http://www.parinya.ca/ and shipped with precompiled [[wxWidgets|wxMSW]]). | |
Install [http://www.parinya.ca/mingwstudio.html MinGW Studio], add [http://www.zlib.org Zlib] and [http://curl.haxx.se Curl] compiled libs in The [http://www.parinya.ca/mingwstudio.html MinGW Studio] tree. | Install [http://www.parinya.ca/mingwstudio.html MinGW Studio], add [http://www.zlib.org Zlib] and [http://curl.haxx.se Curl] compiled libs in The [http://www.parinya.ca/mingwstudio.html MinGW Studio] tree. |
Revision as of 21:48, 16 May 2005
Contents
Originally by Madcat
This wiki page only supports the lastest CVS version of aMule.
List of things you need to compile aMule
Note: Some of these require manually moving includes/libs into the right directories.
Windows port of GNU C compiler -> Download
Minimal GNU shell for Windows -> Download
Developer toolkit for MSys (for CVS & co) -> Download
LibIConv (required by gettext) -> Download
GetText (for po files, autogen.sh, etc) -> Download
zlib compression library -> Download
Windows port of wxWidgets library -> Download
Common guidelines, issues, solutions
When compiling wxWidgets, you should make use of the following configure flags: --disable-shared --without-checklistbox
Link statically against zlib to avoid distributing extranous DLLs (and generally make life simpler).
Compilation
The compilation itself is actually just a matter of following the usual method: ./configure && make
However, zlib detection might fail. If that's the case, you need to add --with-zlib=/local/ to your configure flags.
Compiling with MinGW Studio
NOTE: The compilation with MinGW Studio is deprecated right now and currently does not. It might work again in the future.
As of 2004/07/17, you can find, in CVS, the file amule.msp which is the project file relative to the MinGW Studio IDE (Free and under GPL at http://www.parinya.ca/ and shipped with precompiled wxMSW).
Install MinGW Studio, add Zlib and Curl compiled libs in The MinGW Studio tree.
Then, open amule.msp with MinGW Studio, press F7, and aMule "should" be compiled :)
Yes, I know, "compile" is not the same as "work" ... But it is a great begining