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.
This commit is contained in:
Viktor Szakats
2009-12-03 12:58:22 +00:00
parent d51d5b27ae
commit feee8ccc87
4 changed files with 15 additions and 7 deletions

View File

@@ -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

View File

@@ -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_,

View File

@@ -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 );
}

View File

@@ -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 );
}