diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-16 01:01:12 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-16 01:01:12 +0100 |
| commit | 3ebaa488a4388a5039803e26a64fa7b8ff1669e9 (patch) | |
| tree | 24d9268e0a6980cf1bb8cce06d93f88639d3bf2d /src/lib/wscript | |
| parent | 11d57d48b64c6e174cb94b0a63150e9b91dd7942 (diff) | |
Move configure()s down to the appropriate level.
Diffstat (limited to 'src/lib/wscript')
| -rw-r--r-- | src/lib/wscript | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/wscript b/src/lib/wscript index ec5a723e4..f60a63f85 100644 --- a/src/lib/wscript +++ b/src/lib/wscript @@ -1,3 +1,8 @@ +def configure(conf): + if conf.options.debug_hash: + conf.env.append_value('CXXFLAGS', '-DDEBUG_HASH') + conf.check_cc(msg = 'Checking for library libmhash', function_name = 'mhash_init', header_name = 'mhash.h', lib = 'mhash', uselib_store = 'MHASH') + def build(bld): obj = bld(features = 'cxx cxxshlib') obj.name = 'libdvdomatic' |
