diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-08-19 00:24:43 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-08-19 00:24:43 +0000 |
| commit | 5600304bf0324a2a2f781de396c1590eb2fb8a96 (patch) | |
| tree | 99c65092f8765ad80aadc9c3db07a08c8d4fa394 | |
| parent | 98978c4e5841c1431618dbc412280bf567042f5a (diff) | |
| download | ruby-5600304bf0324a2a2f781de396c1590eb2fb8a96.tar.gz ruby-5600304bf0324a2a2f781de396c1590eb2fb8a96.tar.xz ruby-5600304bf0324a2a2f781de396c1590eb2fb8a96.zip | |
* configure.in, win32/Makefile.sub (LIBS): need to link shell32
library for SH* functions on mswin32 and mingw32.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | win32/Makefile.sub | 2 |
3 files changed, 7 insertions, 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, diff --git a/configure.in b/configure.in index 453a61e5c..89a9ba806 100644 --- a/configure.in +++ b/configure.in @@ -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 diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 53b161e7a..4717b1572 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -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: |
