[Pkg-cli-common-commits] [SCM] cli-common branch, master, updated. debian/0.8_exp1-5-g446fbd7

Iain Lane laney at ubuntu.com
Mon May 16 22:48:23 UTC 2011


The following commit has been merged in the master branch:
commit 446fbd7db70705e09207cc303bb38b5ad60d7b2c
Author: Iain Lane <laney at ubuntu.com>
Date:   Thu May 5 23:46:08 2011 +0100

    Automatically exclude some common windows libraries
    
    As these libraries are so commonly used and are only ever going to be
    windows specific (thus not cause a problem for us), we can and should
    just exclude them automatically. Otherwise consumers would have to
    repeat the exclusion.

diff --git a/dh_clideps b/dh_clideps
index 4f20728..bc46527 100755
--- a/dh_clideps
+++ b/dh_clideps
@@ -112,6 +112,20 @@ a package dependency or failing if the libbaz dependency is unresolvable.
 
 =cut
 
+# Static list of modulerefs to automatically exclude
+@{$dh{MODULE_EXCLUDE}} = (
+  "i:comctl32.dll",
+  "i:dwmapi.dll",
+  "i:gdi32.dll"
+  "i:imm32.dll"
+  "i:kernel32.dll",
+  "i:shell32.dll",
+  "i:shlwapi.dll",
+  "i:system32.dll",
+  "i:user32.dll",
+  "i:uxtheme.dll",
+  );
+
 # Add an item to the moduleref exclude list.
 sub AddModulerefExclude { my($option,$value)=@_;
 	push @{$dh{MODULE_EXCLUDE}},$value;

-- 
cli-common



More information about the Pkg-cli-common-commits mailing list