use the better defines for the xft version
authorDana Jansens <danakj@orodu.net>
Tue, 14 Jan 2003 23:55:07 +0000 (23:55 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 14 Jan 2003 23:55:07 +0000 (23:55 +0000)
otk/font.cc

index f649185..a38946f 100644 (file)
@@ -50,11 +50,10 @@ Font::Font(int screen_num, const std::string &fontstring,
       printf(_("Couldn't initialize Xft.\n\n"));
       ::exit(3);
     }
-    int build = XFT_VERSION;
     int version = XftGetVersion();
     printf(_("Using Xft %d.%d.%d (Built against %d.%d.%d).\n"),
            version / 10000 % 100, version / 100 % 100, version % 100,
-           build / 10000 % 100, build / 100 % 100, build % 100);
+           XFT_MAJOR, XFT_MINOR, XFT_REVISION);
     _xft_init = true;
   }