all repos — openbox @ 63c794a63f4ee6f661f984b9c93facf749d14fb9

openbox fork - make it a bit more like ryudo

get the xft version from the library instead of from the headers
Dana Jansens danakj@orodu.net
commit

63c794a63f4ee6f661f984b9c93facf749d14fb9

parent

3dde884d380ca1103c39019049bc9864054100e9

1 files changed, 4 insertions(+), 3 deletions(-)

jump to
M otk/font.ccotk/font.cc

@@ -51,11 +51,12 @@ assert(tint <= CHAR_MAX);

if (!_xft_init) { if (!XftInit(0)) { - printf(_("Couldn't initialize Xft version %d.%d.%d.\n\n"), - XFT_MAJOR, XFT_MINOR, XFT_REVISION); + printf(_("Couldn't initialize Xft.\n\n")); ::exit(3); } - printf(_("Using Xft %d.%d.%d.\n"), XFT_MAJOR, XFT_MINOR, XFT_REVISION); + int version = XftGetVersion(); + printf(_("Using Xft %d.%d.%d.\n"), + version / 10000 % 100, version / 100 % 100, version % 100); _xft_init = true; }