Actions
Bug #2587
closedForced definition of struct timezone under MinGW
Description
=begin
It appears that win32.h is forcing the definition of timezone structure, even when it has been defined by MinGW provided headers.
The output from compilation of miniruby:
In file included from ../include/ruby/defines.h:205:0, from ../include/ruby/ruby.h:73, from ../include/ruby.h:32, from ../main.c:13: ../include/ruby/win32.h:201:8: error: redefinition of 'struct timezone'
And the code that defines it:
#ifdef __MINGW32__
struct timezone {
int tz_minuteswest;
int tz_dsttime;
};
#undef isascii
#define isascii __isascii
#endif
It is clear that this was made to workaround limitations of older versions of MinGW, but a simple check with AC_CHECK_TYPES (or if specific are needed: AC_CHECK_MEMBERS), any of those could provide the defines needed to avoid the forced redefinition.
Please find attached a naive patch for configure.in and win32.h that use HAVE_STRUCT_TIMEZONE
Thank you.
=end
Files
Actions
Like0
Like0Like0Like0