Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3c748ff

Browse files
authored
Merge pull request #23511 from zheddie/ibmisupport
supporting IBM i OS
2 parents 1bac3b3 + 32af714 commit 3c748ff

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
@@ -198,9 +198,12 @@ def get_and_extract_tarball(urls, sha, dirname):
198198
options = {
199199
'backend': config.get('rc_options', 'backend', fallback=None),
200200
'system_freetype': config.getboolean(
201-
'libs', 'system_freetype', fallback=sys.platform.startswith('aix')),
201+
'libs', 'system_freetype',
202+
fallback=sys.platform.startswith(('aix', 'os400'))
203+
),
202204
'system_qhull': config.getboolean(
203-
'libs', 'system_qhull', fallback=False),
205+
'libs', 'system_qhull', fallback=sys.platform.startswith('os400')
206+
),
204207
}
205208

206209

0 commit comments

Comments
 (0)