-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pango: New version 1.55.5 * Pango: Add patch for macOS
- Loading branch information
Showing
2 changed files
with
31 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Building Pango 1.55.5 with FriBidi 1.0.16 fails with the error message | ||
``` | ||
[00:16:53] ../pango/pango-bidi-type.c:83:10: error: use of undeclared identifier '_FRIBIDI_TYPE_SENTINEL' | ||
``` | ||
Reported as <https://gitlab.gnome.org/GNOME/pango/-/issues/834>. | ||
|
||
--- a/pango/pango-bidi-type.c | ||
+++ b/pango/pango-bidi-type.c | ||
@@ -80,7 +80,6 @@ | ||
case FRIBIDI_TYPE_RLI: return PANGO_BIDI_TYPE_RLI; | ||
case FRIBIDI_TYPE_FSI: return PANGO_BIDI_TYPE_FSI; | ||
case FRIBIDI_TYPE_PDI: return PANGO_BIDI_TYPE_PDI; | ||
- case _FRIBIDI_TYPE_SENTINEL: | ||
default: | ||
return PANGO_BIDI_TYPE_ON; | ||
} |