summaryrefslogtreecommitdiffstats
path: root/libraries/ptlib/ptlib-2.10.10-mga-bison-parameter.patch
diff options
context:
space:
mode:
author Matteo Bernardini2020-09-12 20:31:23 +0200
committer Matteo Bernardini2020-09-12 20:31:23 +0200
commitb38ad4464a26bbe8c11a8ec3d2a44467a9f80c19 (patch)
tree79336dddbe92db427d5b2b9fd50541954114ff5c /libraries/ptlib/ptlib-2.10.10-mga-bison-parameter.patch
parentb2643f7815ef7bbf399288ba0e383b0f293ce05e (diff)
downloadslackbuilds-current-20200912.1.tar.gz
20200912.1 global branch merge.current-20200912.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/ptlib/ptlib-2.10.10-mga-bison-parameter.patch')
-rw-r--r--libraries/ptlib/ptlib-2.10.10-mga-bison-parameter.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/libraries/ptlib/ptlib-2.10.10-mga-bison-parameter.patch b/libraries/ptlib/ptlib-2.10.10-mga-bison-parameter.patch
deleted file mode 100644
index fcc8d0d2e7..0000000000
--- a/libraries/ptlib/ptlib-2.10.10-mga-bison-parameter.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- ptlib-2.10.11/./src/ptlib/common/getdate.y 2013-08-15 01:20:26.000000000 +0200
-+++ /mnt/chroot/cauldron/home/dan/rpm/BUILD/ptlib-2.10.11/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