diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 32560d91d9..bbb3a271b0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2011-07-17 15:29 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * include/hbsetup.ch + - deleted HB_LEGACY_LEVEL3 + + added HB_LEGACY_LEVEL5 + 2011-07-17 15:26 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * include/extend.api * include/hbdefs.h diff --git a/harbour/include/hbsetup.ch b/harbour/include/hbsetup.ch index fd3ada8c45..fb5b4f3fe7 100644 --- a/harbour/include/hbsetup.ch +++ b/harbour/include/hbsetup.ch @@ -62,20 +62,11 @@ #define HB_CLP_UNDOC /* Enable Cl*pper 5.2e/5.3b undocumented features */ #define HB_COMPAT_C53 /* Enable Cl*pper 5.3b extensions */ -/* *********************************************************************** - * Leave this #define if you want to allow usage of legacy Harbour 2.0.0/Clipper - * #defines/types/functions in your 3rd party C code. In later Harbour - * versions this macro will be first disabled by default, then completely - * removed, leaving the only default the strict Harbour namespace without - * legacy stuff. - * You should modify your 3rd party code to compile without this macro ASAP. - * NOTE: C code using legacy Clipper (.api) headers is unaffected. - */ #ifndef HB_LEGACY_OFF -#define HB_LEGACY_LEVEL3 +#define HB_LEGACY_LEVEL4 #endif /* Future level of legacy cleanup */ -#define HB_LEGACY_LEVEL4 +#define HB_LEGACY_LEVEL5 #endif /* HB_SETUP_CH_ */