http://bugs.winehq.org/show_bug.cgi?id=17809
--- Comment #27 from Florian florian@fkoeberle.de 2009-03-26 17:51:57 --- (In reply to comment #26) I setup a wine repository with useful Warcraft 3 patches here: http://repo.or.cz/w/wine/warcraft3.git
Besides my patch it also contains a patch which works around bug 9787.
The url to clone/fetch from is: git://repo.or.cz/wine/warcraft3.git
e.g. to build WINE with the patches and run warcraft 3 you could enter the following commands: cd git clone git://repo.or.cz/wine/warcraft3.git wine-war3 cd wine-war3 ./configure --with-gnutls && make depend && make ./wine "c:\Program Files\Warcraft III\Frozen Throne.exe"
Much faster, but also more difficult is the fetching of the changes into your checked out wine repository. git remote add warcraft3 git://repo.or.cz/wine/warcraft3.git git fetch warcraft3
And if you know what you do then you can reset the current branch to it with: git reset --hard warcraft3/master