diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2012-06-13 23:07:37 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2012-06-20 12:30:11 +0200 |
commit | 3b1a5f26ed62d064f6a3a4f9a7b68292fa587a5c (patch) | |
tree | 5912412c5e8919e88cc7aed82d31263af6a58aff /connectivity | |
parent | 0892a1aefa66f7e5c20a7707f565614b31fc416c (diff) |
WaE: avoid build break on Mac PPC/XCode 2.5
otherwise breaks with comparison beetween signed and unsigned integer
expressions
(cherry picked from commit f5e1c75333594ea00d8ccdb1c69a7446c06f4ce9)
Diffstat (limited to 'connectivity')
-rwxr-xr-x | connectivity/source/parse/sqlbison.y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y index 2c144e0c2574..25d4009ffa5e 100755 --- a/connectivity/source/parse/sqlbison.y +++ b/connectivity/source/parse/sqlbison.y @@ -129,7 +129,9 @@ static connectivity::OSQLInternalNode* newNode(const ::rtl::OUString& _NewValue, connectivity::OSQLParser* xxx_pGLOBAL_SQLPARSER; +#if !(defined MACOSX && defined PPC) #define YYERROR_VERBOSE +#endif #define SQLyyerror(s) \ { \ |