Alexandre Julliard : wineboot: Delay import the dlls that are not needed for the default initialisation.
Module: wine Branch: master Commit: 8c06ba6fd8e3845e3b92239168a529c2f4b0e96d URL: http://source.winehq.org/git/wine.git/?a=commit;h=8c06ba6fd8e3845e3b92239168... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Jan 16 19:51:20 2008 +0100 wineboot: Delay import the dlls that are not needed for the default initialisation. --- programs/wineboot/Makefile.in | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/programs/wineboot/Makefile.in b/programs/wineboot/Makefile.in index 8d69026..a9db582 100644 --- a/programs/wineboot/Makefile.in +++ b/programs/wineboot/Makefile.in @@ -4,7 +4,8 @@ SRCDIR = @srcdir@ VPATH = @srcdir@ MODULE = wineboot.exe APPMODE = -mconsole -IMPORTS = shell32 shlwapi version user32 advapi32 kernel32 ntdll +IMPORTS = advapi32 kernel32 ntdll +DELAYIMPORTS = shell32 shlwapi version user32 EXTRALIBS = -luuid C_SRCS = \
participants (1)
-
Alexandre Julliard