diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7fbfb6795fe..71191f14ad7 100644 --- a/configure.ac +++ b/configure.ac @@ -1919,10 +1919,9 @@ fi if test "$PORTNAME" = "win32" -o "$PORTNAME" = "cygwin"; then # Cygwin and (apparently, based on test results) Mingw both - # have a broken strtof(), so substitute the same replacement - # code we use with VS2013. That's not a perfect fix, since - # (unlike with VS2013) it doesn't avoid double-rounding, but - # we have no better options. To get that, though, we have to + # have a broken strtof(), so substitute its implementation. + # That's not a perfect fix, since it doesn't avoid double-rounding, + # but we have no better options. To get that, though, we have to # force the file to be compiled despite HAVE_STRTOF. AC_LIBOBJ([strtof]) AC_MSG_NOTICE([On $host_os we will use our strtof wrapper.]) |