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

[win32] get rid of redefinition of reserved macro

```
warning C4117: macro name '_INTEGRAL_MAX_BITS' is reserved, '#define' ignored
```
This commit is contained in:
Nobuyoshi Nakada 2020-03-05 12:00:50 +09:00
parent 740511834f
commit 43a3c88187
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -635,7 +635,9 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
#define SIZEOF_LONG_LONG 0
!endif
#define SIZEOF___INT64 8
#ifndef _INTEGRAL_MAX_BITS
#define _INTEGRAL_MAX_BITS 64
#endif
!if $(LARGEFILE_SUPPORT)
#define SIZEOF_OFF_T 8
!else