| Index: src/dtoa-config.c
|
| ===================================================================
|
| --- src/dtoa-config.c (revision 1090)
|
| +++ src/dtoa-config.c (working copy)
|
| @@ -75,5 +75,9 @@
|
| /* Make sure we use the David M. Gay version of strtod(). On Linux, we
|
| * cannot use the same name (maybe the function does not have weak
|
| * linkage?). */
|
| +/* For MinGW, turn on __NO_ISOCEXT so that its strtod doesn't get added */
|
| +#ifdef __MINGW32__
|
| +#define __NO_ISOCEXT
|
| +#endif /* __MINGW32__ */
|
| #define strtod gay_strtod
|
| #include "third_party/dtoa/dtoa.c"
|
|
|