You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ja...@apache.org on 2013/10/11 00:59:12 UTC

svn commit: r1531149 - in /openoffice/branches/l10n40/main/l10ntools/source: gConPolex.l gConSrclex.l gConTreelex.l gConUlflex.l gConXcslex.l gConXculex.l gConXhplex.l gConXrmlex.l

Author: jani
Date: Thu Oct 10 22:59:11 2013
New Revision: 1531149

URL: http://svn.apache.org/r1531149
Log:
update for mac and debian (flex generates a different source than on ubuntu)

Modified:
    openoffice/branches/l10n40/main/l10ntools/source/gConPolex.l
    openoffice/branches/l10n40/main/l10ntools/source/gConSrclex.l
    openoffice/branches/l10n40/main/l10ntools/source/gConTreelex.l
    openoffice/branches/l10n40/main/l10ntools/source/gConUlflex.l
    openoffice/branches/l10n40/main/l10ntools/source/gConXcslex.l
    openoffice/branches/l10n40/main/l10ntools/source/gConXculex.l
    openoffice/branches/l10n40/main/l10ntools/source/gConXhplex.l
    openoffice/branches/l10n40/main/l10ntools/source/gConXrmlex.l

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConPolex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConPolex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConPolex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConPolex.l Thu Oct 10 22:59:11 2013
@@ -50,7 +50,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) { IMPLptr->lexRead(buf, &result, max_size); }
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = xres;}
 %}
 
 

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConSrclex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConSrclex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConSrclex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConSrclex.l Thu Oct 10 22:59:11 2013
@@ -36,7 +36,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) {IMPLptr->lexRead(buf, &result, max_size);}
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = (yy_size_t)xres;}
 %}
 
 

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConTreelex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConTreelex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConTreelex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConTreelex.l Thu Oct 10 22:59:11 2013
@@ -36,7 +36,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) { IMPLptr->lexRead(buf, &result, max_size); }
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = xres;}
 %}
 
 

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConUlflex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConUlflex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConUlflex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConUlflex.l Thu Oct 10 22:59:11 2013
@@ -36,7 +36,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) { IMPLptr->lexRead(buf, &result, max_size); }
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = xres;}
 %}
 
 

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConXcslex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConXcslex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConXcslex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConXcslex.l Thu Oct 10 22:59:11 2013
@@ -36,7 +36,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) { IMPLptr->lexRead(buf, &result, max_size); }
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = xres;}
 %}
 
 

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConXculex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConXculex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConXculex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConXculex.l Thu Oct 10 22:59:11 2013
@@ -36,7 +36,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) { IMPLptr->lexRead(buf, &result, max_size); }
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = xres;}
 %}
 
 

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConXhplex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConXhplex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConXhplex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConXhplex.l Thu Oct 10 22:59:11 2013
@@ -36,7 +36,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) { IMPLptr->lexRead(buf, &result, max_size); }
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = xres;}
 %}
 
 

Modified: openoffice/branches/l10n40/main/l10ntools/source/gConXrmlex.l
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gConXrmlex.l?rev=1531149&r1=1531148&r2=1531149&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gConXrmlex.l (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gConXrmlex.l Thu Oct 10 22:59:11 2013
@@ -36,7 +36,7 @@
 #define YYLMAX 64000
 
 /* change reader function (input) to our own version */
-#define YY_INPUT(buf,result,max_size) { IMPLptr->lexRead(buf, &result, max_size); }
+#define YY_INPUT(buf,result,max_size) {int xres; IMPLptr->lexRead(buf, &xres, max_size); result = xres;}
 %}