Avoid two gcc warnings ../../../libXfont-1.3.3/src/fontfile/ffcheck.c:150: warning: initialization discards qualifiers from pointer target type ../../../libXfont-1.3.3/src/fontfile/register.c:98: warning: initialization discards qualifiers from pointer target type diff -ur libXfont-1.3.3.orig/src/fontfile/ffcheck.c libXfont-1.3.3/src/fontfile/ffcheck.c --- libXfont-1.3.3.orig/src/fontfile/ffcheck.c 2008-05-12 23:31:00.000000000 +0200 +++ libXfont-1.3.3/src/fontfile/ffcheck.c 2008-10-07 14:00:29.000000000 +0200 @@ -147,7 +147,7 @@ void FontFileCheckRegisterFpeFunctions (void) { - FontModule *fmlist = builtinFontModuleList; + const FontModule *fmlist = builtinFontModuleList; #ifdef XFONT_BITMAP /* bitmap is always builtin to libXfont now */ diff -ur libXfont-1.3.3.orig/src/fontfile/register.c libXfont-1.3.3/src/fontfile/register.c --- libXfont-1.3.3.orig/src/fontfile/register.c 2008-05-12 23:31:00.000000000 +0200 +++ libXfont-1.3.3/src/fontfile/register.c 2008-10-07 14:00:29.000000000 +0200 @@ -95,7 +95,7 @@ void FontFileRegisterFpeFunctions(void) { - FontModule *fmlist = builtinFontModuleList; + const FontModule *fmlist = builtinFontModuleList; #ifdef XFONT_BITMAP /* bitmap is always builtin to libXfont now */