diff options
Diffstat (limited to 'Build/source/libs/graphite2/gr2test.c')
-rw-r--r-- | Build/source/libs/graphite2/gr2test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Build/source/libs/graphite2/gr2test.c b/Build/source/libs/graphite2/gr2test.c index 20b7965fb49..06d2237ab38 100644 --- a/Build/source/libs/graphite2/gr2test.c +++ b/Build/source/libs/graphite2/gr2test.c @@ -15,6 +15,8 @@ int main (int argc, char **argv) int nMajor, nMinor, nBugFix; gr_engine_version(&nMajor, &nMinor, &nBugFix); - printf ("%s: using Graphite2 version %d.%d.%d\n", argv[0], nMajor, nMinor, nBugFix); + printf ("%s: Compiled with Graphite2 version %d.%d.%d; using %d.%d.%d\n", + argv[0], GR2_VERSION_MAJOR, GR2_VERSION_MINOR, GR2_VERSION_BUGFIX, + nMajor, nMinor, nBugFix); return 0; } |