Add encoder support for Dirac using the Schroedinger library.
[vlc/asuraparaju-public.git] / src / check_symbols
blob8d7a4e4d166479378a333900e55b64ccb5eb4077
1 #! /bin/sh
2 # Plugin API consistency check for VLC
3 # Copyright © 2007 Rémi Denis-Courmont.
5 if ! diff -u libvlc-headers.sym libvlc-sorted.sym; then
6 echo "Mismatching symbols found!"
7 exit 1
8 fi
10 # TODO: we should pass this:
11 #if grep -e "^_" libvlc-headers.sym; then
12 # echo "Illegal symbol name (starting with underscore) found!";
13 # exit 1
14 #fi