Taken from Debian: https://salsa.debian.org/multimedia-team/taopm/-/raw/master/debian/patches/02-fix-parser-yyerror.diff Description: Use a constant char, dummy comment. Author: Tiago Bortoletto Vaz Last-Update: 2013-04-17 --- a/taoparse/taoparser.yy +++ b/taoparse/taoparser.yy @@ -23,7 +23,7 @@ #include #include "taoparserdefs.h" -int yyerror(char *s); +int yyerror(const char *s); //#ifdef LINUX int yylex(void); @@ -2924,7 +2924,7 @@ } -int yyerror (char *s) +int yyerror (const char *s) { parse_error(what_I_expected_here); std::cout << "PARSE_FAILED"; >
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-07-30gnu: mutter: Fix build....With newer versions of Mesa, a test in ensure_bits_initialized fails. Fixed upstream in newer versions of mutter. See <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3047>. * gnu/packages/gnome.scm (mutter)[source]: Add patch. * gnu/packages/patches/mutter-fix-inverted-test.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. John Kehayias