http://bugs.winehq.org/show_bug.cgi?id=7476
------- Additional Comments From saulius.krasuckas@elst.vtu.lt 2007-16-03 05:05 ------- * Brian wrote: | Also, I've never done a "patch" to my Wine before, I suppose I'd use it in | the GIT tree that I have. Can you point me to a Howto on adding a patch?
Brian, basically you need to (1) download the diff-patch or email-patch, (2) make a separate branch from a "master" and then (3) apply the patch here.
(1) I would recommend to copy the text starting at those lines
From 98813ba4d5892cb30272842d15c5340731310b99 Mon Sep 17 00:00:00 2001 From: Stefan Doesinger <stefan at codeweavers.com>
and ending by those ones:
-- 1.4.4.3
Then save the text to event_queries.diff
(2) $ git branch test_event_queries $ git checkout test_event_queries
(3) $ git-am -3 event_queries.diff
And then compile Wine as usual.