diff options
Diffstat (limited to 'Build/source/libs/graphite2')
-rw-r--r-- | Build/source/libs/graphite2/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/libs/graphite2/gr2test.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/libs/graphite2/ChangeLog b/Build/source/libs/graphite2/ChangeLog index 630fe6827c2..0274842f59e 100644 --- a/Build/source/libs/graphite2/ChangeLog +++ b/Build/source/libs/graphite2/ChangeLog @@ -1,3 +1,7 @@ +2013-10-29 Peter Breitenlohner <peb@mppmu.mpg.de> + + * gr2test.c: Print more info. + 2013-09-01 Peter Breitenlohner <peb@mppmu.mpg.de> * configure.ac: Drop LT_INIT, not using Libtool. 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; } |