| Index: third_party/harfbuzz-ng/src/hb-version.h
|
| diff --git a/third_party/harfbuzz-ng/src/hb-version.h b/third_party/harfbuzz-ng/src/hb-version.h
|
| index 3d5e963a51b80633b305f5d1ea9e6666b80aa52f..517cc8f26ebf64c982e91b8beba54ccb20019b1a 100644
|
| --- a/third_party/harfbuzz-ng/src/hb-version.h
|
| +++ b/third_party/harfbuzz-ng/src/hb-version.h
|
| @@ -38,12 +38,12 @@ HB_BEGIN_DECLS
|
|
|
| #define HB_VERSION_MAJOR 0
|
| #define HB_VERSION_MINOR 9
|
| -#define HB_VERSION_MICRO 27
|
| +#define HB_VERSION_MICRO 32
|
|
|
| -#define HB_VERSION_STRING "0.9.27"
|
| +#define HB_VERSION_STRING "0.9.32"
|
|
|
| -#define HB_VERSION_CHECK(major,minor,micro) \
|
| - ((major)*10000+(minor)*100+(micro) >= \
|
| +#define HB_VERSION_ATLEAST(major,minor,micro) \
|
| + ((major)*10000+(minor)*100+(micro) <= \
|
| HB_VERSION_MAJOR*10000+HB_VERSION_MINOR*100+HB_VERSION_MICRO)
|
|
|
|
|
| @@ -56,9 +56,9 @@ const char *
|
| hb_version_string (void);
|
|
|
| hb_bool_t
|
| -hb_version_check (unsigned int major,
|
| - unsigned int minor,
|
| - unsigned int micro);
|
| +hb_version_atleast (unsigned int major,
|
| + unsigned int minor,
|
| + unsigned int micro);
|
|
|
|
|
| HB_END_DECLS
|
|
|