mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
f8a1071d96
Sponsored by: iXsystems Inc.
41 lines
1.9 KiB
Python
41 lines
1.9 KiB
Python
--- buildtools/wafsamba/samba_python.py.orig 2018-01-13 09:07:51 UTC
|
|
+++ buildtools/wafsamba/samba_python.py
|
|
@@ -76,17 +76,35 @@ def SAMBA_CHECK_PYTHON_HEADERS(conf, man
|
|
|
|
def _check_python_headers(conf, mandatory):
|
|
try:
|
|
+ from python import _get_python_variables
|
|
Configure.ConfigurationError
|
|
conf.check_python_headers(mandatory=mandatory)
|
|
+ conf.env['PYTHON_SO_ABI'] = _get_python_variables(
|
|
+ conf.env['PYTHON'],
|
|
+ ["get_config_var('SOABI') or ''"],
|
|
+ ['from distutils.sysconfig import get_config_var']
|
|
+ )[0]
|
|
except Configure.ConfigurationError:
|
|
if mandatory:
|
|
raise
|
|
|
|
if conf.env['PYTHON_VERSION'] > '3':
|
|
- abi_pattern = os.path.splitext(conf.env['pyext_PATTERN'])[0]
|
|
- conf.env['PYTHON_SO_ABI_FLAG'] = abi_pattern % ''
|
|
+ '''Be caucious here - conf parameter is PYTHON_SO_ABI_FLAG,
|
|
+ while environment variable is PYTHON3_SO_ABI_FLAG'''
|
|
+ override_PYTHON_SO_ABI_FLAG = os.getenv('PYTHON3_SO_ABI_FLAG', None)
|
|
+ if override_PYTHON_SO_ABI_FLAG is not None:
|
|
+ conf.env['PYTHON_SO_ABI_FLAG'] = override_PYTHON_SO_ABI_FLAG
|
|
+ conf.env['pyext_PATTERN'] = '%%s%s.%s' % (conf.env['PYTHON_SO_ABI_FLAG'], conf.env['SHLIBEXT'])
|
|
+ if not conf.env['PYTHON_SO_ABI_FLAG']:
|
|
+ if conf.env['PYTHON_SO_ABI']:
|
|
+ conf.env['PYTHON_SO_ABI_FLAG'] = '.'+conf.env['PYTHON_SO_ABI']
|
|
+ conf.env['pyext_PATTERN'] = '%%s%s.%s' % (conf.env['PYTHON_SO_ABI_FLAG'], conf.env['SHLIBEXT'])
|
|
+ else:
|
|
+ abi_pattern = os.path.splitext(conf.env['pyext_PATTERN'])[0]
|
|
+ conf.env['PYTHON_SO_ABI_FLAG'] = abi_pattern % ''
|
|
else:
|
|
conf.env['PYTHON_SO_ABI_FLAG'] = ''
|
|
+
|
|
conf.env['PYTHON_LIBNAME_SO_ABI_FLAG'] = (
|
|
conf.env['PYTHON_SO_ABI_FLAG'].replace('_', '-'))
|
|
|