1
0
mirror of https://github.com/samba-team/samba.git synced 2025-09-06 17:44:20 +03:00

tevent: Only check for pkg-config file when checking for system tevent.

This commit is contained in:
Jelmer Vernooij
2011-11-12 16:36:28 +01:00
parent 774f85649b
commit b929cd2c09

View File

@@ -35,7 +35,7 @@ def configure(conf):
conf.env.standalone_tevent = conf.IN_LAUNCH_DIR() conf.env.standalone_tevent = conf.IN_LAUNCH_DIR()
if not conf.env.standalone_tevent: if not conf.env.standalone_tevent:
if conf.CHECK_BUNDLED_SYSTEM('tevent', minversion=VERSION, if conf.CHECK_BUNDLED_SYSTEM_PKG('tevent', minversion=VERSION,
onlyif='talloc', implied_deps='replace talloc'): onlyif='talloc', implied_deps='replace talloc'):
conf.define('USING_SYSTEM_TEVENT', 1) conf.define('USING_SYSTEM_TEVENT', 1)
if conf.CHECK_BUNDLED_SYSTEM_PYTHON('pytevent', 'tevent', minversion=VERSION): if conf.CHECK_BUNDLED_SYSTEM_PYTHON('pytevent', 'tevent', minversion=VERSION):