diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e4d1dbb76b..fb2eb44bdf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,16 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-12-03 13:53 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/xhb/freadlin.c + * contrib/hbide/freadlin.c + ! Fixed C mode MSVC warning. + + * config/win/msvc.mk + - Removed -MT switch from default MSVC options. It should be user controlled + and -MT seemed to be the default anyway. Now it's also in sync with hbmk2 + and also with msvcarm target. + 2009-12-02 19:00 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) + contrib/hbide/projects * contrib/hbide/hbide.prg @@ -27,8 +37,8 @@ * contrib/hbide/hbide.prg * contrib/hbide/ideactions.prg + contrib/hbide/resources/projectproperties.ui - + Added Project Properties Dialog in .ui format. Trying to implement - some exotic thoughts which I ever missed in xMate. + + Added Project Properties Dialog in .ui format. Trying to implement + some exotic thoughts which I ever missed in xMate. 2009-12-02 20:04 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * external/libpng/Makefile diff --git a/harbour/config/win/msvc.mk b/harbour/config/win/msvc.mk index 8a60e59f05..5d102859d8 100644 --- a/harbour/config/win/msvc.mk +++ b/harbour/config/win/msvc.mk @@ -47,9 +47,7 @@ ifneq ($(HB_BUILD_OPTIM),no) endif ifeq ($(HB_BUILD_DEBUG),yes) - CFLAGS += -MTd -Zi -else - CFLAGS += -MT + CFLAGS += -Zi endif # # NOTE: -GA flag should be disabled when building MT _.dlls_, diff --git a/harbour/contrib/hbide/freadlin.c b/harbour/contrib/hbide/freadlin.c index caf23f61f2..577f418843 100644 --- a/harbour/contrib/hbide/freadlin.c +++ b/harbour/contrib/hbide/freadlin.c @@ -236,6 +236,6 @@ HB_FUNC( HB_FREADLINE ) if( ! hb_storclen_buffer( pBuffer, lSize, 2 ) ) hb_xfree( pBuffer ); hb_retnl( bEOF ? -1 : 0 ); - hb_xfree( Term ); + hb_xfree( ( void * ) Term ); hb_xfree( iTermSizes ); } diff --git a/harbour/contrib/xhb/freadlin.c b/harbour/contrib/xhb/freadlin.c index caf23f61f2..577f418843 100644 --- a/harbour/contrib/xhb/freadlin.c +++ b/harbour/contrib/xhb/freadlin.c @@ -236,6 +236,6 @@ HB_FUNC( HB_FREADLINE ) if( ! hb_storclen_buffer( pBuffer, lSize, 2 ) ) hb_xfree( pBuffer ); hb_retnl( bEOF ? -1 : 0 ); - hb_xfree( Term ); + hb_xfree( ( void * ) Term ); hb_xfree( iTermSizes ); }