gst-glib.m4: check for glib-mkenums and glib-genmarshal and allow them to be overridden
[platform/upstream/gst-common.git] / check-exports
index 51b8bf4..ee01ff7 100755 (executable)
@@ -10,36 +10,28 @@ if [ $# -ne 2 ]; then
        exit 1
 fi
 
-export LC_ALL=C
-
-def_path=$1
-def_name=$(basename $def_path)
-lib_path=$2
-
-lib_result=$(mktemp /tmp/defname.XXXXXX)
-
-# FIXME 0.11: in 0.11, we should change the export filter to only export
-# _gst_foo, but not __gst_foo (we can't change this now, since we added
-# __gst_debug_min and __gst_debug_enabled at some point and need to keep
-# ABI compatibility).  So below we special-case some symbols that shouldn't
-# really be exported, either because we're too lazy to rename them to something
-# that's not exported (like the _gst_parse_* stuff) or because we had them in
-# public headers at some point although they shouldn't be and so we need to
-# keep them exported now (like _gst_debug_init, 
-# __gst_element_factory_add_interface or
-# __gst_element_factory_add_static_pad_template).  We suppress them here to
-# make sure they're at least not exported in the windows msvc build (they
-# were never in the .def file, so they never got exported).
-nm $lib_path | awk \
+def_path="$1"
+def_name="$(basename $def_path)"
+lib_path="$2"
+
+lib_result="`mktemp /tmp/defname.XXXXXX`"
+
+LC_ALL=C
+export LC_ALL
+
+# On Solaris, add -p to get the correct output format
+NMARGS=
+if nm -V 2>&1 |grep Solaris > /dev/null; then
+  NMARGS=-p
+fi
+
+# _end is special cased because for some reason it is reported as an exported
+# BSS symbol, unlike on linux where it's a local absolute symbol.
+nm $NMARGS $lib_path | awk \
        '{
-               if ($3 !~ /^_gst_parse_yy/ &&
-                   $3 !~ /^_gst_[a-z]*_init/ &&
-                   $3 !~ /^_gst_parse_launch/ &&
-                   $3 !~ /^__gst_element_details_/ &&
-                   $3 !~ /^__gst_element_factory_add_/ &&
-                   $3 !~ /^gst_interfaces_marshal/)
+               if ($3 ~ /^[_]?(gst_|Gst|GST_).*/)
                {
-                       if ($2 == "B" || $2 == "S")
+                       if ($2 ~ /^[BSDG]$/)
                                print "\t" $3 " DATA"
                        else if ($2 == "T")
                                print "\t" $3
@@ -48,10 +40,11 @@ nm $lib_path | awk \
        > $lib_result
 
 diffoutput=`diff -u $def_path $lib_result`
+diffresult=$?
 
 rm $lib_result
 
-if test "x$diffoutput" = "x"; then
+if test "$diffresult" -eq 0; then
   exit 0;
 else
   echo -n "$diffoutput" >&2