[Libreoffice-commits] .: connectivity/source

Christian Lohmaier cloph at kemper.freedesktop.org
Wed Jun 13 14:27:28 PDT 2012


 connectivity/source/parse/sqlbison.y |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit f5e1c75333594ea00d8ccdb1c69a7446c06f4ce9
Author: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
Date:   Wed Jun 13 23:07:37 2012 +0200

    WaE: avoid build break on Mac PPC/XCode 2.5
    
    otherwise breaks with comparison beetween signed and unsigned integer
    expressions

diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y
index 2c144e0..25d4009 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)						\
 {											\


More information about the Libreoffice-commits mailing list