Control: tags -1 patch Hi, attached patch will solve FTBFS. I hope it will help you.
Regards,
Description: Fix FTBFS #1081856 invalid conversion pointer Fix FTBFS #1081856 invalid conversion pointer, this error was raised from agg_font_freetype.cpp because of type mismatch with 'unsigned char*' and 'char*'. Author: HAYASHI Kentaro <ken...@xdump.org> Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081856 Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081856 Forwarded: no Last-Update: 2024-10-05 Index: agg-2.6.1-r134+dfsg1/font_freetype/agg_font_freetype.cpp =================================================================== --- agg-2.6.1-r134+dfsg1.orig/font_freetype/agg_font_freetype.cpp +++ agg-2.6.1-r134+dfsg1/font_freetype/agg_font_freetype.cpp @@ -158,7 +158,7 @@ namespace agg FT_Vector* point; FT_Vector* limit; - char* tags; + unsigned char* tags; int n; // index of contour in outline int first; // index of first point in contour