mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in, win32/Makefile.sub (LIBS): need to link shell32
library for SH* functions on mswin32 and mingw32. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6c5ba93713
commit
66b6366e1c
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Aug 19 09:19:27 2004 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* configure.in, win32/Makefile.sub (LIBS): need to link shell32
|
||||
library for SH* functions on mswin32 and mingw32.
|
||||
|
||||
Thu Aug 19 03:07:00 2004 why the lucky stiff <why@ruby-lang.org>
|
||||
|
||||
* lib/yaml/baseemitter.rb: folding now handles double-quoted strings,
|
||||
|
|
|
@ -291,7 +291,7 @@ cygwin*) rb_cv_have_daylight=no
|
|||
ac_cv_func__setjmp=no
|
||||
ac_cv_func_setitimer=no
|
||||
;;
|
||||
mingw*) LIBS="-lwsock32 $LIBS"
|
||||
mingw*) LIBS="-lshell32 -lwsock32 $LIBS"
|
||||
ac_cv_header_a_out_h=no
|
||||
ac_cv_header_pwd_h=no
|
||||
ac_cv_header_utime_h=no
|
||||
|
|
|
@ -125,7 +125,7 @@ RFLAGS = -r
|
|||
!if !defined(EXTLIBS)
|
||||
EXTLIBS =
|
||||
!endif
|
||||
LIBS = oldnames.lib user32.lib advapi32.lib wsock32.lib $(EXTLIBS)
|
||||
LIBS = oldnames.lib user32.lib advapi32.lib shell32.lib wsock32.lib $(EXTLIBS)
|
||||
MISSING = acosh.obj crypt.obj erf.obj win32.obj
|
||||
|
||||
ARFLAGS = -machine:$(MACHINE) -out:
|
||||
|
|
Loading…
Reference in a new issue