E5F7 Merge pull request #23517 from meeseeksmachine/auto-backport-of-pr-23… · matplotlib/matplotlib@e9bdbc3 · GitHub
[go: up one dir, main page]

Skip to content

Commit e9bdbc3

Browse files
authored
Merge pull request #23517 from meeseeksmachine/auto-backport-of-pr-23511-on-v3.5.x
Backport PR #23511 on branch v3.5.x (supporting IBM i OS)
2 parents 4ee298b + f99fd34 commit e9bdbc3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setupext.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,12 @@ def get_and_extract_tarball(urls, sha, dirname):
197197
options = {
198198
'backend': config.get('rc_options', 'backend', fallback=None),
199199
'system_freetype': config.getboolean(
200-
'libs', 'system_freetype', fallback=sys.platform.startswith('aix')),
200+
'libs', 'system_freetype',
201+
fallback=sys.platform.startswith(('aix', 'os400'))
202+
),
201203
'system_qhull': config.getboolean(
202-
'libs', 'system_qhull', fallback=False),
204+
'libs', 'system_qhull', fallback=sys.platform.startswith('os400')
205+
),
203206
}
204207

205208

0 commit comments

Comments
 (0)
0