1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@18042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-07-12 14:58:07 +00:00
parent 97208f2b34
commit 2d46553ffa
2 changed files with 8 additions and 1 deletions

View file

@ -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.

View file

@ -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)