2010-06-23 00:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* harbour-win-spec
  * harbour-wce-spec
  * harbour.spec
  * include/hbver.h
  * config/global.mk
    + Changed version number to:
         2.1.0beta2 (from 2.1.0beta1)

  * src/compiler/hbopt.c
    * Formatting.
This commit is contained in:
Viktor Szakats
2010-06-22 22:10:26 +00:00
parent aca7461f3d
commit 6ff29efe36
7 changed files with 19 additions and 7 deletions

View File

@@ -16,6 +16,18 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-06-23 00:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* harbour-win-spec
* harbour-wce-spec
* harbour.spec
* include/hbver.h
* config/global.mk
+ Changed version number to:
2.1.0beta2 (from 2.1.0beta1)
* src/compiler/hbopt.c
* Formatting.
2010-06-22 14:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/THbQtUI.prg
% Little more syncronization.

View File

@@ -36,9 +36,9 @@ HB_VER_MAJOR := 2
HB_VER_MINOR := 1
HB_VER_RELEASE := 0
# Status (dev, alpha1, alpha2, beta1, beta2, rc1, rc2, empty for final)
HB_VER_STATUS := beta1
HB_VER_STATUS := beta2
# Short status (d, a1, a2, b1, b2, r1, r2, empty for final)
HB_VER_STATUS_SH := b1
HB_VER_STATUS_SH := b2
ifeq ($(HB_VER_STATUS_SH),)
HB_VER_STATUS_SH := $(HB_VER_MINOR)$(HB_VER_RELEASE)

View File

@@ -15,7 +15,7 @@
%define name harbour-wce
%define version 2.1.0
%define releasen beta1
%define releasen beta2
%define hb_pref hbce
%define hb_host harbour-project.org
%define readme README.RPM

View File

@@ -15,7 +15,7 @@
%define name harbour-win
%define version 2.1.0
%define releasen beta1
%define releasen beta2
%define hb_pref hbw
%define hb_host harbour-project.org
%define readme README.RPM

View File

@@ -51,7 +51,7 @@
%define name harbour
%define dname Harbour
%define version 2.1.0
%define releasen beta1
%define releasen beta2
%define hb_etcdir /etc/%{name}
%define hb_plat export HB_PLATFORM=linux
%define hb_cc export HB_COMPILER=gcc

View File

@@ -62,7 +62,7 @@
#define HB_VER_MAJOR 2 /* Major version number */
#define HB_VER_MINOR 1 /* Minor version number */
#define HB_VER_RELEASE 0 /* Release number */
#define HB_VER_STATUS "beta1" /* Build status (all lowercase) */
#define HB_VER_STATUS "beta2" /* Build status (all lowercase) */
#define __HARBOUR__ 0x020100 /* Three bytes: Major + Minor + Release. This is recommented for 3rd party .c and .prg level code. */
#endif /* HB_VER_H_ */

View File

@@ -996,7 +996,7 @@ static HB_SHORT hb_compLocalGetNumber( HB_BYTE * pCode )
case HB_P_POPLOCALNEAR:
case HB_P_PUSHLOCALNEAR:
case HB_P_LOCALNEARADDINT:
return * ( (signed char*) pCode + 1 );
return * ( ( signed char* ) pCode + 1 );
case HB_P_POPLOCAL:
case HB_P_PUSHLOCAL: