From 6c62e22c1c751a6a2472a996316656ec5d03aa51 Mon Sep 17 00:00:00 2001 From: Noel Power Date: Fri, 3 Aug 2018 16:51:59 +0100 Subject: PY3: detect talloc_utils (for version of python running the build) It seems all combinations have potential to fail here :/ however for the moment making the assumption * if python2 driving the build you are building against libpython2 (with the option of having python3 as 'extra-python' * if python3 driving the build you are building against libpython3 (with the option of having python3 as 'extra-python' NOTE: this isn't inforced it probably should be !!!! In a system with python2 and python3 installed it seems waf needs PYTHON env variable to decide which libpython to build against. It's also an option that configure should use that too (to figure out which talloc_util to use or build) However.... right now I just want the thing to build Signed-off-by: Noel Power Reviewed-by: Andrew Bartlett --- lib/talloc/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/talloc/wscript') diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 4a17650c052..a5841b46e4e 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -77,10 +77,10 @@ def configure(conf): using_system_pytalloc_util = False else: using_system_pytalloc_util = True - if not conf.CHECK_BUNDLED_SYSTEM_PKG('pytalloc-util', minversion=VERSION, + name = 'pytalloc-util' + conf.all_envs['default']['PYTHON_SO_ABI_FLAG'] + if not conf.CHECK_BUNDLED_SYSTEM_PKG(name, minversion=VERSION, implied_deps='talloc replace'): using_system_pytalloc_util = False - # We need to get a pytalloc-util for all the python versions # we are building for if conf.env['EXTRA_PYTHON']: -- cgit v1.2.1