Added patch to avoid failure because of missing ptrace support for Exagear.

This commit is contained in:
Sebastian Lackner 2014-11-23 22:35:30 +01:00
parent 0301a239d6
commit 3b946491da
2 changed files with 4 additions and 1 deletions

1
debian/changelog vendored
View File

@ -6,6 +6,7 @@ wine-compholio (1.7.32) UNRELEASED; urgency=low
* Added patch to ensure ShowWindow avoids interthread no-op messages.
* Added patch to avoid race-conditions of async WSARecv() operations with write watches.
* Added patch to fix issues with write watches when using Exagear.
* Added patch to avoid failure because of missing ptrace support for Exagear.
* Removed patch to close server fd is there is no space in thread inflight fd list (accepted upstream).
* Removed patch to fix bugs in StrStr functions (accepted upstream).
* Removed patches to avoid sending messages in FindWindowExW (accepted upstream).

View File

@ -171,15 +171,17 @@ clean:
# Patchset Exagear
# |
# | Modified files:
# | * configure.ac, dlls/ntdll/signal_i386.c, dlls/ntdll/virtual.c
# | * configure.ac, dlls/ntdll/signal_i386.c, dlls/ntdll/virtual.c, server/ptrace.c
# |
.INTERMEDIATE: Exagear.ok
Exagear.ok: ntdll-WRITECOPY.ok
$(call APPLY_FILE,Exagear/0001-ntdll-Implement-emulation-of-SIDT-instruction-when-u.patch)
$(call APPLY_FILE,Exagear/0002-ntdll-Fix-issues-with-write-watches-when-using-Exage.patch)
$(call APPLY_FILE,Exagear/0003-server-Don-t-attempt-to-use-ptrace-when-running-with.patch)
@( \
echo '+ { "Sebastian Lackner", "ntdll: Implement emulation of SIDT instruction when using Exagear.", 1 },'; \
echo '+ { "Sebastian Lackner", "ntdll: Fix issues with write watches when using Exagear.", 1 },'; \
echo '+ { "Sebastian Lackner", "server: Don'\''t attempt to use ptrace when running with Exagear.", 1 },'; \
) > Exagear.ok
# Patchset Miscellaneous