winapi_check: Remove obsolete hacks

Francois Gouget fgouget at free.fr
Fri Jun 17 13:22:34 CDT 2005


Changelog:

  * tools/winapi/config.pm

    Remove a check for obsolete directory and file special cases.


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
      We are Pentium of Borg. You will be approximated. Division is futile.
-------------- next part --------------
Index: tools/winapi/config.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/config.pm,v
retrieving revision 1.18
diff -u -p -r1.18 config.pm
--- tools/winapi/config.pm	9 Jun 2005 10:24:51 -0000	1.18
+++ tools/winapi/config.pm	17 Jun 2005 00:59:16 -0000
@@ -108,12 +108,10 @@ sub file_skip($) {
 
     $_ = file_absolutize($_);
 
-    m%^(?:libtest|programs|rc|server|tests|tools)/% && return 1;
-    m%^(?:debugger|miscemu|libs|server)/% && return 1;
+    m%^(?:libs|programs|server|tools)/% && return 1;
     m%^dlls/wineps/data/% && return 1;
-    m%^windows/x11drv/wineclipsrv\.c$% && return 1;
     m%^dlls/winmm/wineoss/midipatch\.c$% && return 1;
-    m%(?:glue|spec)\.c$% && return 1;
+    m%spec\.c$% && return 1;
 
     return 0;
 }


More information about the wine-patches mailing list