From: Tim-Philipp Müller Date: Thu, 13 Dec 2007 10:02:16 +0000 (+0000) Subject: check-exports: Suppress more unintentional exports (too much hassle to rename them... X-Git-Tag: RELEASE-0_10_0_3~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb7ab03319930496e922173d54f6dfccfff6f357;p=platform%2Fupstream%2Fgst-common.git 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). --- diff --git a/ChangeLog b/ChangeLog index e362ff8..eb5094a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-12-13 Tim-Philipp Müller + + * check-exports: + Suppress more unintentional exports (too much hassle to rename them, + since the win32 project files would need changing too). + 2007-12-12 Tim-Philipp Müller * Makefile.am: 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"