diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 5 | ||||
-rw-r--r-- | config/dfp.m4 | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index 6fdf36c..8be0458 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2010-09-10 Jonathan Yong <jon_y@users.sourceforge.net> + + * dfp.m4: Enable decimal float for i?86 cygwin + and mingw, and for x86_64 mingw. + 2010-09-06 H.J. Lu <hongjiu.lu@intel.com> PR target/45524 diff --git a/config/dfp.m4 b/config/dfp.m4 index d5dbaf5..cc778b1 100644 --- a/config/dfp.m4 +++ b/config/dfp.m4 @@ -20,7 +20,9 @@ Valid choices are 'yes', 'bid', 'dpd', and 'no'.]) ;; ], [ case $1 in - powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux*) + powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux* | \ + i?86*-*-mingw* | x86_64*-*-mingw* | \ + i?86*-*-cygwin*) enable_decimal_float=yes ;; *) |