[PATCH 0/2] MR9636: ntdll, win32u: Install unix libs and dlls with install-dev.
This is useful to build a Wine-based toolchains, third-party external modules can then build and link unixlibs against ntdll.so (and win32u.so), without requiring a full Wine build. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9636
From: Rémi Bernon <rbernon(a)codeweavers.com> --- dlls/ntdll/Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/ntdll/Makefile.in b/dlls/ntdll/Makefile.in index 3c0dfa7a895..01fe7317702 100644 --- a/dlls/ntdll/Makefile.in +++ b/dlls/ntdll/Makefile.in @@ -11,6 +11,8 @@ EXTRADLLFLAGS = -nodefaultlibs i386_EXTRADLLFLAGS = -Wl,--image-base,0x7bc00000 x86_64_EXTRADLLFLAGS = -Wl,--image-base,0x170000000 +INSTALL_DEV = ntdll ntdll.dll + SOURCES = \ actctx.c \ atom.c \ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9636
From: Rémi Bernon <rbernon(a)codeweavers.com> --- dlls/win32u/Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/win32u/Makefile.in b/dlls/win32u/Makefile.in index 454fb2555bc..40acd8de0d7 100644 --- a/dlls/win32u/Makefile.in +++ b/dlls/win32u/Makefile.in @@ -8,6 +8,8 @@ UNIX_LIBS = $(CORETEXT_LIBS) $(APPKIT_LIBS) $(PTHREAD_LIBS) -lm EXTRADLLFLAGS = -nodefaultlibs +INSTALL_DEV = win32u win32u.dll + SOURCES = \ bitblt.c \ bitmap.c \ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9636
participants (1)
-
Rémi Bernon