summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--win32/Makefile.sub2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 77d9a74d4a..feaea0c862 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sat Jul 12 23:54:55 2008 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/Makefile.sub (LIBRUBY_DLDFLAGS): import library which created
+ with DLL is broken. save import library which created by lib.exe and
+ install it.
+ fixed the problem mentioned at the postscript of [ruby-dev:35448]
+
Sat Jul 12 23:24:21 2008 Tanaka Akira <akr@fsij.org>
* ext/socket/socket.c: use PRIuSIZE.
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index edaeb38366..0dadb0ccb4 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -194,7 +194,7 @@ DLDFLAGS = $(LDFLAGS) -dll
SOLIBS =
LIBRUBY_LDSHARED = $(LDSHARED)
-LIBRUBY_DLDFLAGS = $(EXTLDFLAGS) -def:$(RUBYDEF)
+LIBRUBY_DLDFLAGS = $(EXTLDFLAGS) -implib:dummy.lib -def:$(RUBYDEF)
EXEEXT = .exe
!if !defined(PROGRAM)