lib/ccan: explicitly use allow_warnings=True
authorStefan Metzmacher <metze@samba.org>
Wed, 26 Feb 2014 06:35:22 +0000 (07:35 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 2 Apr 2014 07:03:46 +0000 (09:03 +0200)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
lib/ccan/wscript

index 81039d006e58763a3479b709536cc902becf1b94..1c5f337ee4421f8eb01a3baee8c6d5191d62e2fa 100644 (file)
@@ -145,6 +145,7 @@ def configure(conf):
 def ccan_module(bld, name, deps=''):
     bld.SAMBA_SUBSYSTEM('ccan-%s' % name,
                         source=bld.path.ant_glob('%s/*.c' % name),
+                        allow_warnings=True,
                         deps=deps)
     bld.env.CCAN_MODS += 'ccan-%s ' % name
 
@@ -188,5 +189,6 @@ def build(bld):
     bld.SAMBA_LIBRARY('ccan',
                       source='',
                       deps=bld.env.CCAN_MODS,
+                      allow_warnings=True,
                       private_library=True,
                       grouping_library=True)