summaryrefslogtreecommitdiff
path: root/check-exports
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-12-13 10:02:16 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-12-13 10:02:16 +0000
commitfb7ab03319930496e922173d54f6dfccfff6f357 (patch)
treeac075943617eb9ac453c3fb28398559771e1b200 /check-exports
parent4f261af78b1128862cb847afb1b7254b8f458834 (diff)
downloadgstreamer-common-fb7ab03319930496e922173d54f6dfccfff6f357.tar.gz
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-xcheck-exports3
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"