mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
user32-PNG_Support: Set EXTRAINCL variable in Makefile.in.
This commit is contained in:
parent
2354855786
commit
0946354641
@ -6788,7 +6788,7 @@ fi
|
||||
# | * [#38959] Add support for loading PNG icon files
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * dlls/user32/cursoricon.c
|
||||
# | * dlls/user32/Makefile.in, dlls/user32/cursoricon.c
|
||||
# |
|
||||
if test "$enable_user32_PNG_Support" -eq 1; then
|
||||
patch_apply user32-PNG_Support/0001-user32-Add-support-for-PNG-icons.-v4.patch
|
||||
|
@ -1,14 +1,27 @@
|
||||
From 58d0e4f6ca6beaa0e0e470fb288780c0001d58b3 Mon Sep 17 00:00:00 2001
|
||||
From 64afa20c1fba6856edc379c4a4cd0871b905e938 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Thu, 7 Apr 2016 21:18:44 +0800
|
||||
Subject: user32: Add support for PNG icons. (v5)
|
||||
|
||||
---
|
||||
dlls/user32/Makefile.in | 1 +
|
||||
dlls/user32/cursoricon.c | 339 ++++++++++++++++++++++++++++++++++++++++++++++-
|
||||
1 file changed, 334 insertions(+), 5 deletions(-)
|
||||
2 files changed, 335 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/dlls/user32/Makefile.in b/dlls/user32/Makefile.in
|
||||
index b5c80a8..d0381f3 100644
|
||||
--- a/dlls/user32/Makefile.in
|
||||
+++ b/dlls/user32/Makefile.in
|
||||
@@ -2,6 +2,7 @@ EXTRADEFS = -D_USER32_ -D_WINABLE_
|
||||
MODULE = user32.dll
|
||||
IMPORTLIB = user32
|
||||
IMPORTS = gdi32 version advapi32
|
||||
+EXTRAINCL = $(PNG_CFLAGS)
|
||||
DELAYIMPORTS = imm32 usp10
|
||||
|
||||
C_SRCS = \
|
||||
diff --git a/dlls/user32/cursoricon.c b/dlls/user32/cursoricon.c
|
||||
index 4de6b28..a8cd135 100644
|
||||
index 4de6b28..4879988 100644
|
||||
--- a/dlls/user32/cursoricon.c
|
||||
+++ b/dlls/user32/cursoricon.c
|
||||
@@ -6,6 +6,8 @@
|
||||
|
Loading…
Reference in New Issue
Block a user