From: Michael Niedermayer Date: Fri, 27 Mar 2009 03:03:50 +0000 (+0000) Subject: Check for INIT_VLC_USE_STATIC X-Git-Tag: v0.6~5073 X-Git-Url: https://git.libav.org/?p=libav.git;a=commitdiff_plain;h=9e793a2462c1509a283e40ddc09d9130750b2f9c;ds=sidebyside Check for INIT_VLC_USE_STATIC Originally committed as revision 18200 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/tools/patcheck b/tools/patcheck index ab1e237552..9f5be8202b 100755 --- a/tools/patcheck +++ b/tools/patcheck @@ -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' $*