2012-09-25 15:43 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* harbour/src/compiler/harbour.y
  * harbour/src/macro/macro.y
    * disabled meaningless warnings in BCC and OpenWatcom builds

  * harbour/src/compiler/harbour.yyh
  * harbour/src/compiler/harbour.yyc
  * harbour/src/macro/macro.yyc
  * harbour/src/macro/macro.yyh
    * regenerated with unpatched bison 2.5
This commit is contained in:
Przemyslaw Czerpak
2012-09-25 13:44:18 +00:00
parent 1011ad0290
commit c9ab7e294a
8 changed files with 1265 additions and 1228 deletions

View File

@@ -16,6 +16,17 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-09-25 15:43 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/compiler/harbour.y
* harbour/src/macro/macro.y
* disabled meaningless warnings in BCC and OpenWatcom builds
* harbour/src/compiler/harbour.yyh
* harbour/src/compiler/harbour.yyc
* harbour/src/macro/macro.yyc
* harbour/src/macro/macro.yyh
* regenerated with unpatched bison 2.5
2012-09-25 13:29 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* harbour/src/compiler/harbour.yyh
* harbour/src/compiler/harbour.yyc

View File

@@ -37,7 +37,7 @@ endif
RC := porc.exe
RC_OUT := -fo$(subst x,x, )
RCFLAGS += -I. -I$(HB_HOST_INC)
RCFLAGS += -I. -I$(TOP) -I$(HB_HOST_INC)
LD := polink.exe
LD_OUT := -out:

View File

@@ -41,9 +41,17 @@
/* Compile using: bison -d -v harbour.y */
/* to pacify some warnings in BCC */
#if defined( __BORLANDC__ ) && !defined( __STDC__ )
# define __STDC__
/* to pacify some meaningless warnings */
#if defined( __BORLANDC__ )
# if !defined( __STDC__ )
# define __STDC__
# endif
# pragma warn -aus
# pragma warn -ccc
# pragma warn -rch
#elif defined( __WATCOMC__ )
# pragma warning 13 9
# pragma warning 368 9
#endif
#undef alloca

File diff suppressed because it is too large Load Diff

View File

@@ -155,8 +155,8 @@
typedef union YYSTYPE
{
/* Line 2072 of yacc.c */
#line 117 "harbour.y"
/* Line 2068 of yacc.c */
#line 125 "harbour.y"
const char * string; /* to hold a string returned by lex */
int iNumber; /* to hold a temporary integer number */
@@ -197,7 +197,7 @@ typedef union YYSTYPE
/* Line 2072 of yacc.c */
/* Line 2068 of yacc.c */
#line 202 "harboury.h"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1

View File

@@ -72,9 +72,17 @@
/* Compile using: bison -d -p hb_comp macro.y */
/* to pacify some warnings in BCC */
#if defined( __BORLANDC__ ) && !defined( __STDC__ )
# define __STDC__
/* to pacify some meaningless warnings */
#if defined( __BORLANDC__ )
# if !defined( __STDC__ )
# define __STDC__
# endif
# pragma warn -aus
# pragma warn -ccc
# pragma warn -rch
#elif defined( __WATCOMC__ )
# pragma warning 13 9
# pragma warning 368 9
#endif
#undef alloca

File diff suppressed because it is too large Load Diff

View File

@@ -84,8 +84,8 @@
typedef union YYSTYPE
{
/* Line 2072 of yacc.c */
#line 135 "macro.y"
/* Line 2068 of yacc.c */
#line 143 "macro.y"
const char * string; /* to hold a string returned by lex */
int iNumber; /* to hold a temporary integer number */
@@ -120,7 +120,7 @@ typedef union YYSTYPE
/* Line 2072 of yacc.c */
/* Line 2068 of yacc.c */
#line 125 "macroy.h"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1