You've already forked linux-packaging-mono
Imported Upstream version 6.10.0.65
Former-commit-id: e5cb7a4ca4dde494baae4251cd9d7d852457fec8
This commit is contained in:
parent
1263e4b035
commit
e0a10bca36
680
external/bdwgc/autom4te.cache/requests
vendored
680
external/bdwgc/autom4te.cache/requests
vendored
File diff suppressed because it is too large
Load Diff
4
external/bdwgc/config.log
vendored
4
external/bdwgc/config.log
vendored
@@ -10,7 +10,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
## Platform. ##
|
||||
## --------- ##
|
||||
|
||||
hostname = az-ubuntu-generalac7100
|
||||
hostname = az-ubuntu-generalf85770
|
||||
uname -m = x86_64
|
||||
uname -r = 4.15.0-1066-azure
|
||||
uname -s = Linux
|
||||
@@ -747,7 +747,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on az-ubuntu-generalac7100
|
||||
on az-ubuntu-generalf85770
|
||||
|
||||
config.status:1238: creating Makefile
|
||||
config.status:1238: creating bdw-gc.pc
|
||||
|
2
external/bdwgc/libtool.REMOVED.git-id
vendored
2
external/bdwgc/libtool.REMOVED.git-id
vendored
@@ -1 +1 @@
|
||||
3487cac1a0123f492b29e1277b114cf7a7c694fe
|
||||
b9b587451a42deced6329eb1bca5c1706f1c58a5
|
4
external/bockbuild/packages/pango.py
vendored
4
external/bockbuild/packages/pango.py
vendored
@@ -39,7 +39,9 @@ class PangoPackage (GnomeXzPackage):
|
||||
'patches/pango-system-font-check-version.patch',
|
||||
|
||||
# https://devdiv.visualstudio.com/DevDiv/_workitems/edit/573960
|
||||
'patches/pango-get-shaper-for-ideographic-space.patch'
|
||||
'patches/pango-get-shaper-for-ideographic-space.patch',
|
||||
|
||||
'patches/pango-familyName.patch'
|
||||
])
|
||||
|
||||
def prep(self):
|
||||
|
20
external/bockbuild/packages/patches/pango-familyName.patch
vendored
Normal file
20
external/bockbuild/packages/patches/pango-familyName.patch
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
commit a8bd6caefcbe5462547a277a4fb864989626ef6f
|
||||
Author: Cody Russell <cody@jhu.edu>
|
||||
Date: Mon Jan 27 10:44:06 2020 -0600
|
||||
|
||||
Try to get the family name from sysfont
|
||||
|
||||
diff --git a/pango/pangocoretext-fontmap.c b/pango/pangocoretext-fontmap.c
|
||||
index 30605fe..7124db4 100644
|
||||
--- a/pango/pangocoretext-fontmap.c
|
||||
+++ b/pango/pangocoretext-fontmap.c
|
||||
@@ -1437,7 +1437,8 @@ pango_core_text_font_map_init (PangoCoreTextFontMap *ctfontmap)
|
||||
if (major == 10 && minor >= 11)
|
||||
{
|
||||
NSFont *sysfont = [NSFont systemFontOfSize: 0.0];
|
||||
- NSString *name = [[NSFont fontWithName: [[sysfont fontDescriptor] postscriptName] size: 0.0] familyName];
|
||||
+ //NSString *name = [[NSFont fontWithName: [[sysfont fontDescriptor] postscriptName] size: 0.0] familyName];
|
||||
+ NSString *name = [sysfont familyName];
|
||||
|
||||
NSArray *fontfaces = [[NSFontManager sharedFontManager] availableMembersOfFontFamily: name];
|
||||
int num_faces = [fontfaces count];
|
Reference in New Issue
Block a user