check-exports: Suppress more unintentional exports (too much hassle to rename them...
authorTim-Philipp Müller <tim@centricular.net>
Thu, 13 Dec 2007 10:02:16 +0000 (10:02 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 13 Dec 2007 10:02:16 +0000 (10:02 +0000)
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).

ChangeLog
check-exports

index e362ff8..eb5094a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * 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  <tim at centricular dot net>
 
        * Makefile.am:
index 5b7363a..4e22095 100755 (executable)
@@ -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"