2008-09-14 15:56 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* include/hbsetup.ch
    * Turned off HB_LEGACY_LEVEL by default.

  * doc/whatsnew.txt
    * Synced with 1.0.1.

  * make_vc.mak
  * contrib/mtpl_vc.mak
    * MSVS warning level changed to -W4 (with one warning 
      type manually excluded).
    ; NOTE/TOFIX: This will still generate quite some warnings, 
                  hopefully we can fix these until the next major 
                  release.
This commit is contained in:
Viktor Szakats
2008-09-14 14:01:51 +00:00
parent 03b27f7468
commit 96dd4b861f
5 changed files with 21 additions and 3 deletions

View File

@@ -8,6 +8,21 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-14 15:56 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* include/hbsetup.ch
* Turned off HB_LEGACY_LEVEL by default.
* doc/whatsnew.txt
* Synced with 1.0.1.
* make_vc.mak
* contrib/mtpl_vc.mak
* MSVS warning level changed to -W4 (with one warning
type manually excluded).
; NOTE/TOFIX: This will still generate quite some warnings,
hopefully we can fix these until the next major
release.
2008-09-14 13:18 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* make_b32.mak
* make_vc.mak

View File

@@ -124,7 +124,7 @@ CFLAGS_VER = -Ogt2yb1p -GX- -G6 -YX
!endif
#-----------
CFLAGS = -nologo -W3 -w34701 -Gs -I$(INCLUDE_DIR) $(CFLAGS_VER) -T$(HB_BUILD_MODE) \
CFLAGS = -nologo -W4 -wd4127 -Gs -I$(INCLUDE_DIR) $(CFLAGS_VER) -T$(HB_BUILD_MODE) \
$(C_USR) $(CFLAGS)
#-----------

View File

@@ -60,6 +60,9 @@ General
- Changed GNU-make name of MinGW WinCE compiler (HB_COMPILER)
from 'cemgw' to 'mingwce'. Please update your system, if
you've been using this directly (and not via make_*ce.sh scripts).
- Memory statistics module now turned off by default for optimal
performance. It can be turned on by setting HB_FM_STATISTICS
macro.
Core
=============================

View File

@@ -80,7 +80,7 @@
* NOTE: C code using legacy Clipper (.api) headers is unaffected.
*/
#ifndef HB_LEGACY_OFF
#define HB_LEGACY_LEVEL 1
/* #define HB_LEGACY_LEVEL 1 */
#endif
#endif /* HB_SETUP_CH_ */

View File

@@ -178,7 +178,7 @@ CFLAGS_VER = -Ot2b1 -EHs-c- -D_CRT_SECURE_NO_DEPRECATE
CFLAGS_VER = -Ogt2yb1p -GX- -G6 -YX
!endif
CFLAGS = -nologo -W3 -w34701 -Gs -I$(INCLUDE_DIR) $(CFLAGS_VER) -T$(HB_BUILD_MODE) \
CFLAGS = -nologo -W4 -wd4127 -Gs -I$(INCLUDE_DIR) $(CFLAGS_VER) -T$(HB_BUILD_MODE) \
$(C_USR) $(CFLAGS) -I$(OBJ_DIR)
#-----------