How do you build wine from source code and apply patch to the source.
Please give me example because I am new with wine.
Building wine from source code
Code: Select all
patch -p0 patchname.diff
./configure
make
Building wine from source code
Am 11.06.2011 15:57, schrieb etwineb:
patch -p0 < patchname.diffCode:
patch -p0 patchname.diff
./configure
make
-
- Moderator
- Posts: 1153
- Joined: Wed Apr 27, 2011 11:01 pm
Building wine from source code
On 6/11/11 6:57 AM, etwineb wrote:
However, most Wine patches are written using git which will require
as the files are listed as a/dlls/.... and b/dlls/.... in git difference
file format.
No. The command isCode:
patch -p0 patchname.diff
Code: Select all
patch -p0 < patchname.diff
Code: Select all
patch -p1 < patchname.diff
file format.
Building wine from source code
On Sat, Jun 11, 2011 at 23:57, James McKenzie <[email protected]> wrote:
will not work with patches containing file additions/deletions.
For git patches, using git-apply is safer, as the 'patch -p1' versionOn 6/11/11 6:57 AM, etwineb wrote:No. The command isCode:
patch -p0 patchname.diffHowever, most Wine patches are written using git which will requireCode: Select all
 patch -p0 < patchname.diff
as the files are listed as a/dlls/.... and b/dlls/.... in git differenceCode: Select all
patch -p1 < patchname.diff
file format.
will not work with patches containing file additions/deletions.