Renaming PACKAGE into _PACKAGE to avoid a name clash with the auto
tools PACKAGE macro.
This commit is contained in:
parent
7c107deeee
commit
103a7c29cc
|
@ -114,7 +114,7 @@ char *key;
|
||||||
addhtitem (pt_hash, namealloc("others") , OTHERS );
|
addhtitem (pt_hash, namealloc("others") , OTHERS );
|
||||||
addhtitem (pt_hash, namealloc("out") , _OUT );
|
addhtitem (pt_hash, namealloc("out") , _OUT );
|
||||||
|
|
||||||
addhtitem (pt_hash, namealloc("package") , PACKAGE );
|
addhtitem (pt_hash, namealloc("package") , _PACKAGE );
|
||||||
addhtitem (pt_hash, namealloc("port") , PORT );
|
addhtitem (pt_hash, namealloc("port") , PORT );
|
||||||
addhtitem (pt_hash, namealloc("positive") , POSITIVE );
|
addhtitem (pt_hash, namealloc("positive") , POSITIVE );
|
||||||
addhtitem (pt_hash, namealloc("procedure") , PROCEDURE );
|
addhtitem (pt_hash, namealloc("procedure") , PROCEDURE );
|
||||||
|
|
|
@ -147,7 +147,7 @@ static long base ;
|
||||||
%token _OR
|
%token _OR
|
||||||
%token OTHERS
|
%token OTHERS
|
||||||
%token _OUT
|
%token _OUT
|
||||||
%token PACKAGE
|
%token _PACKAGE
|
||||||
%token PORT
|
%token PORT
|
||||||
%token POSITIVE
|
%token POSITIVE
|
||||||
%token PROCEDURE
|
%token PROCEDURE
|
||||||
|
|
Loading…
Reference in New Issue