diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-08-12 19:56:26 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-08-12 19:56:26 -0400 |
commit | c4f35720bc1310c37b41af134dace628ff35a221 (patch) | |
tree | 465221272f0dabdb4112d53484d572be369fd609 | |
parent | 4770396ca172bab95dd4d0b34a272816f1b26922 (diff) | |
download | pango-c4f35720bc1310c37b41af134dace628ff35a221.tar.gz |
Release 1.25.31.25.3
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 18 insertions, 2 deletions
@@ -1,3 +1,19 @@ +Overview of changes between 1.25.2 and 1.25.3 +============================================= +- Fix couple of crashers +- Enforce -fno-exceptions better, should fix build issues for + distros on x86-64. +- Call mprotect() only when available. +- New public API: pango_glyph_item_get_logical_widths() +- Remove G_GNUC_PURE attr from pango_glyph_string_get_width() +- Fix buffer corruption in HarfBuzz +- Bugs fixed: + Bug 591413 – needs to link with libstdc++ + Bug 591511 – hb-blob.c does not compile using mingw on windows + Bug 591557 – [HB] crash scrolling the evolution message list + Bug 591576 – crashed with SIGSEGV at pango + Bug 591465 – Gimp crashes upon opening the font selection dialog + Overview of changes between 1.25.1 and 1.25.2 ============================================= - Tweak C++ compiler options. If you get link errors with gcc on diff --git a/configure.in b/configure.in index df6cc7bc..7ea86481 100644 --- a/configure.in +++ b/configure.in @@ -22,14 +22,14 @@ dnl dnl The triplet m4_define([pango_version_major], [1]) m4_define([pango_version_minor], [25]) -m4_define([pango_version_micro], [2]) +m4_define([pango_version_micro], [3]) m4_define([pango_version], [pango_version_major.pango_version_minor.pango_version_micro]) dnl The X.Y in -lpango-X.Y line. This is expected to stay 1.0 until Pango 2. m4_define([pango_api_version], [1.0]) dnl Number of releases since we've added interfaces dnl XXX For 1.25 release simply remove it and make it automatic. -m4_define([pango_interface_age], [2]) +m4_define([pango_interface_age], [0]) dnl Number of releases since we've broken binary compatibility. m4_define([pango_binary_age], [m4_eval(100 * pango_version_minor + pango_version_micro)]) |