Module: wine Branch: master Commit: 6604181c85633b79c7c4804dee0e9723adaa5ff0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6604181c85633b79c7c4804dee...
Author: Alexandre Julliard julliard@winehq.org Date: Tue May 8 13:25:48 2007 +0200
kernel32: Set the dll file name with the correct case to make EXECryptor happy.
---
dlls/Makedll.rules.in | 2 +- dlls/kernel32/Makefile.in | 1 + 2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/Makedll.rules.in b/dlls/Makedll.rules.in index fe77784..3162175 100644 --- a/dlls/Makedll.rules.in +++ b/dlls/Makedll.rules.in @@ -32,7 +32,7 @@ all: $(MODULE)$(DLLEXT) $(SUBDIRS) # Rules for .so files
$(MODULE).so: $(MAINSPEC) $(ALL_OBJS) Makefile.in - $(WINEGCC) -B$(TOOLSDIR)/tools/winebuild -shared $(SRCDIR)/$(MAINSPEC) $(ALL_OBJS) $(SUBSYSTEM:%=-Wb,--subsystem,%) $(BASEADDRESS:%=-Wl,--image-base,%) -o $@ $(DELAYIMPORTS:%=-l%) $(IMPORTS:%=-l%) $(DELAYIMPORTS:%=-Wb,-d%) $(ALL_LIBS) + $(WINEGCC) -B$(TOOLSDIR)/tools/winebuild -shared $(SRCDIR)/$(MAINSPEC) $(ALL_OBJS) $(SUBSYSTEM:%=-Wb,--subsystem,%) $(DLLFILENAME:%=-Wb,-F,%) $(BASEADDRESS:%=-Wl,--image-base,%) -o $@ $(DELAYIMPORTS:%=-l%) $(IMPORTS:%=-l%) $(DELAYIMPORTS:%=-Wb,-d%) $(ALL_LIBS)
# Rules for .dll files
diff --git a/dlls/kernel32/Makefile.in b/dlls/kernel32/Makefile.in index 09105be..7b0b4cc 100644 --- a/dlls/kernel32/Makefile.in +++ b/dlls/kernel32/Makefile.in @@ -7,6 +7,7 @@ MODULE = kernel32.dll IMPORTLIB = libkernel32.$(IMPLIBEXT) IMPORTS = ntdll EXTRALIBS = @COREFOUNDATIONLIB@ @LIBPOLL@ +DLLFILENAME = KERNEL32.dll BASEADDRESS = 0x7b800000
SPEC_SRCS16 = \