Import of pkgsrc-2014Q1

This commit is contained in:
2014-11-05 12:41:07 +01:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
$NetBSD: distinfo,v 1.5 2011/03/08 15:33:48 taca Exp $
$NetBSD: distinfo,v 1.6 2013/09/11 15:14:00 taca Exp $
SHA1 (itex2MML-1.4.5/itexToMML.tar.gz) = 11631ab52daab19cf315dbe6da75b4b3a32416bb
RMD160 (itex2MML-1.4.5/itexToMML.tar.gz) = 0b68c9c81e305206e7908d994618b8bb161fa6c6
Size (itex2MML-1.4.5/itexToMML.tar.gz) = 166814 bytes
SHA1 (patch-aa) = 7b6bbeffe5089642b9ed1cb87a5d568206f4cf8b
SHA1 (patch-itex2MML.y) = b082b5c10c3910e61312855abcd1299f7cb51e1c
@@ -0,0 +1,24 @@
$NetBSD: patch-itex2MML.y,v 1.1 2013/09/11 15:14:00 taca Exp $
Fix build with bison-3.0
--- itex2MML.y.orig 2010-10-03 07:11:13.000000000 +0000
+++ itex2MML.y
@@ -2,6 +2,8 @@
* itex2MML.y last modified 10/2/2010
*/
+%parse-param {char **ret_str}
+
%{
#include <stdio.h>
#include <string.h>
@@ -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)