summaryrefslogtreecommitdiff
path: root/Build/source/libs/graphite2
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2013-10-29 10:34:07 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2013-10-29 10:34:07 +0000
commit582b3a8d4dc67670d06d7cd227b012a11eae2627 (patch)
tree9e13d9f7497e380cd044cf403118b26291dc5793 /Build/source/libs/graphite2
parent0043db89f7e867929263352f833492ef6df2286a (diff)
cairo graphite2 harfbuzz icu pixman: More info from test programs
git-svn-id: svn://tug.org/texlive/trunk@32030 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/graphite2')
-rw-r--r--Build/source/libs/graphite2/ChangeLog4
-rw-r--r--Build/source/libs/graphite2/gr2test.c4
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;
}