3 from waflib
import Logs
, Errors
5 # This function checks if a perl module is installed on the system.
6 def check_system_perl_module(conf
, module
, version
=None):
9 # Create module string with version
11 module_check
= module
+ ' ' + str(version
)
13 # Check for system perl module
14 if conf
.check_perl_module(module_check
) is None:
23 # Check if perl(Parse::Yapp::Driver) is available.
24 if not check_system_perl_module(conf
,
25 "Parse::Yapp::Driver",
27 raise Errors
.WafError('perl module "Parse::Yapp::Driver" not found')
29 # yapp is used for building the parser
30 if not conf
.find_program('yapp', var
='YAPP'):
31 raise Errors
.WafError('yapp not found')
35 # we want to prefer the git version of the parsers if we can.
36 # Only if the source has changed do we want to re-run yapp
37 # But we force the developer to use the pidl standalone build
38 # to regenerate the files.
39 # TODO: only warn in developer mode and if 'git diff HEAD'
41 warn_about_grammar_changes
= ('PIDL_BUILD_WARNINGS' in bld
.env
and (
42 bld
.IS_NEWER('idl.yp', 'lib/Parse/Pidl/IDL.pm') or
43 bld
.IS_NEWER('expr.yp', 'lib/Parse/Pidl/Expr.pm')))
45 if warn_about_grammar_changes
:
47 Pidl grammar files have changed. Please use the pidl standalone build
48 to regenerate them with yapp.
52 $ make lib/Parse/Pidl/IDL.pm lib/Parse/Pidl/Expr.pm
53 $ git add lib/Parse/Pidl/IDL.pm lib/Parse/Pidl/Expr.pm
57 If you're 100% sure you haven't changed idl.yp and expr.yp
58 try this to avoid this message:
60 $ touch ../pidl/lib/Parse/Pidl/IDL.pm ../pidl/lib/Parse/Pidl/Expr.pm