mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/win32.c (NET_LUID): define it on MinGW32.
mingw-w64 has NET_LUID but mingw32 (mingw.org) still doesn't have NET_LUID. reported by taco on IRC git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dcd8cdbf11
commit
6e4cfd9475
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Thu Jun 6 00:30:04 2013 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (NET_LUID): define it on MinGW32.
|
||||
mingw-w64 has NET_LUID but mingw32 (mingw.org) still doesn't have
|
||||
NET_LUID. reported by taco on IRC
|
||||
|
||||
Thu Jun 6 00:05:08 2013 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* string.c (String#b): Allow code range scan to happen later so
|
||||
|
|
|
@ -3763,7 +3763,7 @@ str2guid(const char *str, GUID *guid)
|
|||
}
|
||||
|
||||
/* License: Ruby's */
|
||||
#if !defined(_IFDEF_) && !defined(__MINGW32__)
|
||||
#if !defined(_IFDEF_) && !defined(__MINGW64__)
|
||||
typedef struct {
|
||||
uint64_t Value;
|
||||
struct {
|
||||
|
|
Loading…
Reference in a new issue