summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2012-05-06 21:00:11 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2012-05-06 21:02:52 +0200
commit34513fe619aee112b11a0a90dc2e981dccdb408e (patch)
tree964a37f5ddf0756755672aa84f004b4dbb34dd6c /idlc
parent31182ed08494ed6afa3371aa246b155c6b58e8b3 (diff)
WaE: avoid build break on Mac PPC/XCode 2.5
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
Diffstat (limited to 'idlc')
-rw-r--r--idlc/source/parser.y2
1 files changed, 2 insertions, 0 deletions
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;