-
-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotfixes: Update NosTale hotfix for 0bfdac7 (#1289)
Fix broken builds since Wine upstream 0bfdac7f65 ("win32u: Move the PE side DND callbacks to user32."). Fixes #1288.
- Loading branch information
1 parent
6a7196a
commit 020e5a4
Showing
3 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
wine-tkg-git/wine-tkg-patches/hotfixes/NosTale/nostale_mouse_fix-0bfdac7.mypatch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- a/dlls/user32/Makefile.in | ||
+++ b/dlls/user32/Makefile.in | ||
@@ -4,6 +4,7 @@ IMPORTLIB = user32 | ||
IMPORTS = $(PNG_PE_LIBS) gdi32 version sechost advapi32 kernelbase win32u | ||
EXTRAINCL = $(PNG_PE_CFLAGS) | ||
DELAYIMPORTS = imm32 | ||
+i386_EXTRADLLFLAGS = -Wl,--image-base,0x7e410000 | ||
|
||
C_SRCS = \ | ||
button.c \ |
6 changes: 3 additions & 3 deletions
6
wine-tkg-git/wine-tkg-patches/hotfixes/NosTale/nostale_mouse_fix.mypatch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- a/dlls/user32/Makefile.in | ||
+++ b/dlls/user32/Makefile.in | ||
@@ -4,6 +4,7 @@ IMPORTLIB = user32 | ||
IMPORTS = $(PNG_PE_LIBS) gdi32 version sechost advapi32 kernelbase win32u | ||
IMPORTS = $(PNG_PE_LIBS) gdi32 sechost advapi32 kernelbase win32u uuid | ||
EXTRAINCL = $(PNG_PE_CFLAGS) | ||
DELAYIMPORTS = imm32 | ||
DELAYIMPORTS = imm32 combase | ||
+i386_EXTRADLLFLAGS = -Wl,--image-base,0x7e410000 | ||
|
||
C_SRCS = \ | ||
SOURCES = \ | ||
button.c \ |