<div><br></div><div><br></div><div class="gmail_quote">2009/4/25 jasonmh <span dir="ltr">&lt;<a href="mailto:wineforum-user@winehq.org" target="_blank">wineforum-user@winehq.org</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

how are you using that? All that stuff is gobbly gook to me.<br>
<br>
<br>
<br>
<br>
<br>
</blockquote></div><br><div>You download source code of wine (wine-git or normal wine-1.xxx (for now wine-1.1.20), download the patches (patches are plain text so simply save them to files... let say patch1.patch and patch2.patch). Unpack wine source code and copy patches to wine source folder. Now simply type(in console, while being in wine dir):</div>
<div></div><div>patch -p1 &lt;patch1.patch </div><div>patch -p1 &lt;patch2.patch</div><div></div><div>You should get something like: &quot;Patching file xxx; HUNK xxx succeed at xxx&quot; now simply recompile wine and use it (instructions on how to compile wine depends on your distribution for Debian based, like Ubuntu):</div>
<div></div><div>1.sudo apt-get build-dep wine (that should get all dependencies required to build wine)<br><br>2.sudo apt-get install checkinstall (this tool will allow you to build .deb package of wine after compilation)<br>
<br>3.(in wine source dir) ./configure &amp;&amp; make depend &amp;&amp; make�<br><br>OR if your CPU have many cores:<br><br>./configure &amp;&amp; make depend -jX &amp;&amp; make -jX where X is numeber of cores your CPU has<br>
<br>After (hopefully, successful) compilation just type:<br><br>sudo checkinstall<br><br>and follow instructions there - it should install wine at the end - if it won&#39;t just install it by hand:<br><br>sudo dpkg -i wine_&lt;something&gt;.deb<br>
<br><br>Now you are all set, just type wine appname.exe to start something ;]<br><br></div>