diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6aaf2ecdc7..6afab828d3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-05 18:10 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/common/hbprintf.c + * do not use modfl() in WinCE POCC builds. If MSVC also does not + support if in WinCE builds then please change the condition to + global HB_OS_WIN_CE + 2009-03-05 16:39 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * doc/man/hbmk.1 * INSTALL diff --git a/harbour/source/common/hbprintf.c b/harbour/source/common/hbprintf.c index bc1e54d5f0..55c86496e6 100644 --- a/harbour/source/common/hbprintf.c +++ b/harbour/source/common/hbprintf.c @@ -271,7 +271,8 @@ optimized. # define _MODFD( x, p ) modf( x, p ) # else # define _x_long_dbl long double -# if defined( __WATCOMC__ ) || defined( __MINGW32CE__ ) || defined( __CYGWIN__ ) +# if defined( __WATCOMC__ ) || defined( __MINGW32CE__ ) || defined( __CYGWIN__ ) || \ + ( defined( HB_OS_WIN_CE ) && defined( __POCC__ ) ) # define _HB_WRAP_MODFL_ # define _MODFD( x, p ) _hb_modfl( x, p ) # else