How do you build wine from source code and apply patch to the source. Please give me example because I am new with wine.
Code: patch -p0 patchname.diff ./configure make
Am 11.06.2011 15:57, schrieb etwineb:> Code: > > patch -p0 patchname.diffpatch -p0 < patchname.diff> ./configure > make >
On 6/11/11 6:57 AM, etwineb wrote:> Code: > > patch -p0 patchname.diffNo. The command is [code] patch -p0 < patchname.diff [/code] However, most Wine patches are written using git which will require [code] patch -p1 < patchname.diff [/code] as the files are listed as a/dlls/.... and b/dlls/.... in git difference file format.