From ecaab058ccb1a56d6f5a7f8008b9879aea62cf7a Mon Sep 17 00:00:00 2001 From: David Spencer Date: Sun, 26 Jul 2015 14:01:37 +0100 Subject: academic/itex2mml: Updated for version 1.5.1. Fixed build failure with bison-3. Removed bashisms and hardcoded Ruby version. (The itexToMML.tar.gz version was already 1.5.1...) Signed-off-by: David Spencer Signed-off-by: Willy Sudiarto Raharjo --- academic/itex2mml/bison3-fix.patch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 academic/itex2mml/bison3-fix.patch (limited to 'academic/itex2mml/bison3-fix.patch') diff --git a/academic/itex2mml/bison3-fix.patch b/academic/itex2mml/bison3-fix.patch new file mode 100644 index 0000000000000..53daeaadddf2d --- /dev/null +++ b/academic/itex2mml/bison3-fix.patch @@ -0,0 +1,21 @@ +diff -wbBur itexToMML/itex-src/itex2MML.y itexToMML.my/itex-src/itex2MML.y +--- itexToMML/itex-src/itex2MML.y 2014-01-05 21:56:04.000000000 +0400 ++++ itexToMML.my/itex-src/itex2MML.y 2014-02-03 21:21:16.455644069 +0400 +@@ -2,6 +2,8 @@ + * itex2MML.y last modified 1/5/2014 + */ + ++%parse-param {char **ret_str} ++ + %{ + #include + #include +@@ -27,7 +29,7 @@ + + void (*itex2MML_error) (const char * msg) = itex2MML_default_error; + +- static void yyerror (char * s) ++ static void yyerror (char **ret_str, char * s) + { + char * msg = itex2MML_copy3 (s, " at token ", yytext); + if (itex2MML_error) -- cgit v1.2.3