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

Skip to content

Commit 67462de

Browse files
committed
supporting IBM i OS
1 parent 862f85d commit 67462de

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setupext.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,11 @@ 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') or
203+
sys.platform.startswith('os400'))),
202204
'system_qhull': config.getboolean(
203-
'libs', 'system_qhull', fallback=False),
205+
'libs', 'system_qhull', fallback=sys.platform.startswith('os400')),
204206
}
205207

206208

0 commit comments

Comments
 (0)