Fix non-xft build referencing fl_get_font_xfld() (#461)

This is only one part of issue 461 which describes two build errors
on "Raspberry Pi4 bullseye". It turned out that the build didn't
find Xft.
This commit is contained in:
Albrecht Schlosser 2022-07-09 22:05:46 +02:00
parent d9d3406be8
commit 79ce6547ce
1 changed files with 3 additions and 0 deletions

View File

@ -56,6 +56,9 @@ extern const char *fl_bg;
extern const char *fl_bg2; extern const char *fl_bg2;
// end of extern additions workaround // end of extern additions workaround
#if !USE_XFT
extern char *fl_get_font_xfld(int fnum, int size);
#endif
XIM Fl_X11_Screen_Driver::xim_im = 0; XIM Fl_X11_Screen_Driver::xim_im = 0;