http://bugs.winehq.org/show_bug.cgi?id=3560
------- Additional Comments From jonathan@ernstfamily.ch 2005-15-10 11:23 ------- You can't apply a patch to an already compiled wine.
If you installed Wine using gentoo's portage, follow these steps to build and install from cvs and patch:
1)su 2)emerge unmerge wine 3)export CVSROOT=:pserver:cvs@cvs.winehq.org:/home/wine 4)cvs login 5)cvs 6)cvs -z 0 checkout wine 7)cd wine 8)patch -p1 < path_to_the_patch_you_want_to_try/patch.patch 9)./configure 10)make depend && make 11)make install
Then you can try new cvs versions some days later by making 1)cd wine 2)make uninstall 3)cvs update -PAd 4)./configure 5)make depend && make 6)make install