From 34513fe619aee112b11a0a90dc2e981dccdb408e Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Sun, 6 May 2012 21:00:11 +0200 Subject: [PATCH] WaE: avoid build break on Mac PPC/XCode 2.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit otherwise breaks with /usr/share/bison.simple: In function ´int yyparse()´: /usr/share/bison.simple:614: warning: comparison between signed and unsigned integer expressions /usr/share/bison.simple:626: warning: comparison between signed and unsigned integer expressions --- idlc/source/parser.y | 2 ++ 1 file changed, 2 insertions(+) diff --git a/idlc/source/parser.y b/idlc/source/parser.y index acaf5c19b805..79c9ac42bff5 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -106,7 +106,9 @@ #define YYDEBUG 1 +#if !(defined MACOSX && defined PPC) #define YYERROR_VERBOSE 1 +#endif using ::rtl::OUString; using ::rtl::OString;