diff options
author | Andreas Schneider <asn@samba.org> | 2014-02-28 15:59:45 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-03-06 09:59:46 +0100 |
commit | 9e591e3d619d127c5ec5f6ac86326c84f59878fa (patch) | |
tree | 61c5fc245af658bd25b205500ccb7ced3af3eaa9 /pidl | |
parent | 410ada45b7041be6976fcfefadccbb99212a15a3 (diff) | |
download | samba-9e591e3d619d127c5ec5f6ac86326c84f59878fa.tar.gz |
pidl-waf: Check for system perl(Parse::Yapp::Driver).
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'pidl')
-rw-r--r-- | pidl/wscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pidl/wscript b/pidl/wscript index 236439153ec..49658700f12 100644 --- a/pidl/wscript +++ b/pidl/wscript @@ -32,6 +32,9 @@ def configure(conf): conf.check_tool('perl') conf.check_perl_ext_devel() + # Check if perl(Parse::Yapp::Driver) is available. + check_system_perl_module(conf, "Parse::Yapp::Driver", 1.05) + # we need a recent version of MakeMaker to get the right man page names if conf.CHECK_PERL_MANPAGE(): conf.env.PERLMAN1EXT = conf.CHECK_PERL_MANPAGE(section='1') |