Commit ae71e21f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Forgot to update the symbols

parent 76a32e9f
...@@ -8,4 +8,12 @@ cat ${srcdir}/../include/vlc_*.h | \ ...@@ -8,4 +8,12 @@ cat ${srcdir}/../include/vlc_*.h | \
sed -n -e 's/^VLC_EXPORT\s*([^,]*,\s*\([a-zA-Z0-9_]*\)\s*,.*$/\1/p' | \ sed -n -e 's/^VLC_EXPORT\s*([^,]*,\s*\([a-zA-Z0-9_]*\)\s*,.*$/\1/p' | \
sort -du > libvlc-headers.sym sort -du > libvlc-headers.sym
exec diff -u ${srcdir}/libvlc.sym libvlc-headers.sym if grep -e "^_" libvlc-headers.sym; then
echo "Illegal symbol name (starting with underscore) found!";
exit 1
fi
if ! diff -u ${srcdir}/libvlc.sym libvlc-headers.sym; then
echo "Mismatching symbols found!"
exit 1
fi
...@@ -182,6 +182,7 @@ msleep ...@@ -182,6 +182,7 @@ msleep
mstrtime mstrtime
mwait mwait
__net_Accept __net_Accept
net_AcceptSingle
__net_Connect __net_Connect
__net_ConnectDgram __net_ConnectDgram
__net_Gets __net_Gets
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment