forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_symbols
executable file
·29 lines (25 loc) · 896 Bytes
/
check_symbols
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/sh
# Copyright © 2015 Rémi Denis-Courmont
cd "$(dirname "$0")" || exit $?
test -f libvlccore.sym || exit 1
# DO NOT add new entries here.
# Do make existing ones more specific.
# Do remove existing ones (especially near the end).
echo "Looking for unprefixed exported symbols..."
cat libvlccore.sym | grep -v \
-e '^vlc_' -e '^vlm_' -e '^libvlc_[A-Z]' -e '^VLC_' \
-e '^input_' -e '^access_' -e '^demux_' -e '^decoder_' \
-e '^image_' -e '^block_' -e '^picture_' -e '^subpicture_' \
-e '^es_format' -e '^[asv]out_' -e '^spu_' -e '^filter_' \
-e '^video_format_' \
-e '^intf_' \
-e '^update_' -e '^addons\?_' -e '^fingerprinter_' \
-e '^text_style_' -e '^text_segment_' \
-e '^net_' -e '^httpd_' \
-e '^config_' -e '^module_' -e '^var_' \
-e '^date_' -e '^plane_' \
-e '^utf8_' -e '^xml_' \
-e '^[A-Z][a-z]*Charset$' \
-e '^NTPtime64$' \
&& exit 1
echo "None found."