ChangeSet ID: 17318 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2005/05/06 09:33:34 Modified files: tools/winapi : winapi_check Log message: Francois Gouget HAVE_V4L2 is not an autoconf define so tell winapi_check not to complain complain about it. Patch: http://cvs.winehq.org/patch.py?id=17318 Old revision New revision Changes Path 1.3 1.4 +1 -1 wine/tools/winapi/winapi_check Index: wine/tools/winapi/winapi_check diff -u -p wine/tools/winapi/winapi_check:1.3 wine/tools/winapi/winapi_check:1.4 --- wine/tools/winapi/winapi_check:1.3 Thu May 23 21:53:59 2013 +++ wine/tools/winapi/winapi_check Thu May 23 21:53:59 2013 @@ -477,7 +477,7 @@ foreach my $file (@c_files) { if($options->config) { if(!$nativeapi->is_conditional($_)) { - if(/^HAVE_/ && !/^HAVE_(?:IPX|MESAGL|BUGGY_MESAGL|WINE_CONSTRUCTOR)$/) + if(/^HAVE_/ && !/^HAVE_(?:IPX|MESAGL|BUGGY_MESAGL|V4L2|WINE_CONSTRUCTOR)$/) { $output->write("$file: $_ is not declared as a conditional\n"); }