diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-06-24 16:03:02 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-06-24 18:46:57 +1000 |
commit | 0be1820718202bd73a0e756c35a9b21edbbc563b (patch) | |
tree | 13899c5f4e3f169cceeb9262ef7dcfe49045387d | |
parent | f6e46ee0fba25efecb78412a61270d7e70bb6f7d (diff) | |
download | samba-0be1820718202bd73a0e756c35a9b21edbbc563b.tar.gz samba-0be1820718202bd73a0e756c35a9b21edbbc563b.tar.bz2 samba-0be1820718202bd73a0e756c35a9b21edbbc563b.zip |
s4-ldb: use CHECK_XSLTPROC_MANPAGES()
-rw-r--r-- | lib/tdb/wscript | 3 | ||||
-rw-r--r-- | source4/lib/ldb/wscript | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript index a1776e5c06..a7afa98750 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -39,8 +39,7 @@ def configure(conf): conf.env.disable_python = getattr(Options.options, 'disable_python', False) - if conf.env.standalone_tdb: - conf.find_program('xsltproc', var='XSLTPROC') + conf.CHECK_XSLTPROC_MANPAGES() if not conf.env.disable_python: # also disable if we don't have the python libs installed diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index 588b6feaef..9de9a5b47e 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -46,7 +46,7 @@ def configure(conf): conf.define('USING_SYSTEM_LDB', 1) if conf.env.standalone_ldb: - conf.find_program('xsltproc', var='XSLTPROC') + conf.CHECK_XSLTPROC_MANPAGES() # we need this for the ldap backend if conf.CHECK_FUNCS_IN('ber_flush ldap_open ldap_initialize', 'lber ldap', headers='lber.h ldap.h'): |