diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-12 14:58:07 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-12 14:58:07 +0000 |
| commit | 1fa956e143325e343b42c842e0690f916cc322ba (patch) | |
| tree | 6c8df6675fd5b31032bcd3afe131ce2e9e7d083d | |
| parent | 60a80ff0de2358d0288467b1ebad48b28b2a7cc5 (diff) | |
| download | ruby-1fa956e143325e343b42c842e0690f916cc322ba.tar.gz ruby-1fa956e143325e343b42c842e0690f916cc322ba.tar.xz ruby-1fa956e143325e343b42c842e0690f916cc322ba.zip | |
* 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]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | win32/Makefile.sub | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -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 edaeb3836..0dadb0ccb 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) |
