]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Check for INIT_VLC_USE_STATIC
authormichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 27 Mar 2009 03:03:50 +0000 (03:03 +0000)
committermichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 27 Mar 2009 03:03:50 +0000 (03:03 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18200 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

tools/patcheck

index ab1e237552cf8ffac79a489ad105930de4396b82..9f5be8202b8f368dc67ee99357d9ecd1c77ca5a8 100755 (executable)
@@ -41,6 +41,7 @@ hiegrep '//[-/<\* ]*$'    'empty comment' $*
 hiegrep '/\*[-<\* ]*\*/'  'empty comment' $*
 hiegrep 'for *\( *'"$ERE_PRITYP"' '  'not gcc 2.95 compatible' $*
 hiegrep '(static|inline|const) *\1'  'duplicate word' $*
+hiegrep 'INIT_VLC_USE_STATIC' 'forbidden ancient vlc type' $*
 
 hiegrep2 '(int|unsigned|static|void)[a-zA-Z0-9 _]*(init|end)[a-zA-Z0-9 _]*\(.*[^;]$' '(av_cold|:\+[^a-zA-Z_])' 'These functions may need av_cold, please review the whole patch for similar functions needing av_cold' $*