diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-12-13 10:02:16 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-12-13 10:02:16 +0000 |
commit | fb7ab03319930496e922173d54f6dfccfff6f357 (patch) | |
tree | ac075943617eb9ac453c3fb28398559771e1b200 /check-exports | |
parent | 4f261af78b1128862cb847afb1b7254b8f458834 (diff) |
check-exports: Suppress more unintentional exports (too much hassle to rename them, since the win32 project files wou...
Original commit message from CVS:
* check-exports:
Suppress more unintentional exports (too much hassle to rename them,
since the win32 project files would need changing too).
Diffstat (limited to 'check-exports')
-rwxr-xr-x | check-exports | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/check-exports b/check-exports index 5b7363a..4e22095 100755 --- a/check-exports +++ b/check-exports @@ -36,7 +36,8 @@ nm $lib_path | awk \ $3 !~ /^_gst_[a-z]*_init/ && $3 !~ /^_gst_parse_launch/ && $3 !~ /^__gst_element_details_/ && - $3 !~ /^__gst_element_factory_add_/) + $3 !~ /^__gst_element_factory_add_/ && + $3 !~ /^gst_interfaces_marshal/) { if ($2 == "B") print "\t" $3 " DATA" |