summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xcheck-exports3
2 files changed, 8 insertions, 1 deletions
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 <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:
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"