[Pkg-voip-commits] r10381 - in /ptlib/branches/ptlib2.10-luyten/debian: changelog patches/bison-fix patches/series

dedu-guest at alioth.debian.org dedu-guest at alioth.debian.org
Wed Jan 8 17:16:33 UTC 2014


Author: dedu-guest
Date: Wed Jan  8 17:16:32 2014
New Revision: 10381

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=10381
Log:
* patches/bison-fix: Fix build with bison 3.0 (Closes: Bug#733396).
* Ack NMU, thanks Samuel!

Added:
    ptlib/branches/ptlib2.10-luyten/debian/patches/bison-fix
Modified:
    ptlib/branches/ptlib2.10-luyten/debian/changelog
    ptlib/branches/ptlib2.10-luyten/debian/patches/series

Modified: ptlib/branches/ptlib2.10-luyten/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/branches/ptlib2.10-luyten/debian/changelog?rev=10381&op=diff
==============================================================================
--- ptlib/branches/ptlib2.10-luyten/debian/changelog	(original)
+++ ptlib/branches/ptlib2.10-luyten/debian/changelog	Wed Jan  8 17:16:32 2014
@@ -1,10 +1,9 @@
-ptlib (2.10.11~dfsg-1) UNRELEASED; urgency=medium
-
-  * New Upstream release
-  * Track luyten svn://svn.debian.org/pkg-voip/ptlib/branches/ptlib2.10-luyten/
-  * NEW package libpt2.10.11 - match soname 
-
- -- Mark Purcell <msp at debian.org>  Sun, 29 Dec 2013 16:28:32 +1100
+ptlib (2.10.10~dfsg-3) unstable; urgency=low
+
+  * patches/bison-fix: Fix build with bison 3.0 (Closes: Bug#733396).
+  * Ack NMU, thanks Samuel!
+
+ -- Eugen Dedu <Eugen.Dedu at pu-pm.univ-fcomte.fr>  Wed, 08 Jan 2014 14:50:49 +0100
 
 ptlib (2.10.10~dfsg-2.1) unstable; urgency=low
 

Added: ptlib/branches/ptlib2.10-luyten/debian/patches/bison-fix
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/branches/ptlib2.10-luyten/debian/patches/bison-fix?rev=10381&op=file
==============================================================================
--- ptlib/branches/ptlib2.10-luyten/debian/patches/bison-fix	(added)
+++ ptlib/branches/ptlib2.10-luyten/debian/patches/bison-fix	Wed Jan  8 17:16:32 2014
@@ -0,0 +1,39 @@
+--- a/src/ptlib/common/getdate.y	2013-08-15 01:20:26.000000000 +0200
++++ b/src/ptlib/common/getdate.y	2013-12-15 00:24:27.866481490 +0100
+@@ -121,9 +121,9 @@
+ static int yylex();
+ 
+ #ifdef __GNUC__
+-static int yyerror(char const *msg);
++static int yyerror(void *, char const *msg);
+ #else
+-static void yyerror(char const *msg);
++static void yyerror(void *, char const *msg);
+ #endif
+ 
+ 
+@@ -132,7 +132,8 @@
+ 
+ %}
+ 
+-%pure_parser
++%pure-parser
++%parse-param {void *parseParam}
+ 
+ %union {
+     time_t		Number;
+@@ -1018,12 +1019,12 @@
+ #endif
+ 
+ #ifdef __GNUC__
+-int yyerror(const char * s)
++int yyerror(void *var, const char * s)
+ {
+   return 0;
+ }
+ #else
+-static void yyerror(const char * s)
++static void yyerror(void *var, const char * s)
+ {
+ }
+ #endif

Modified: ptlib/branches/ptlib2.10-luyten/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/ptlib/branches/ptlib2.10-luyten/debian/patches/series?rev=10381&op=diff
==============================================================================
--- ptlib/branches/ptlib2.10-luyten/debian/patches/series	(original)
+++ ptlib/branches/ptlib2.10-luyten/debian/patches/series	Wed Jan  8 17:16:32 2014
@@ -1 +1,2 @@
 hurd-fix
+bison-fix




More information about the Pkg-voip-commits mailing list