summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott D Phillips <scott.d.phillips@intel.com>2016-11-18 10:24:39 -0800
committerThibault Saunier <thibault.saunier@osg.samsung.com>2016-11-18 16:22:16 -0300
commit1416c1683f48bd3aac9d4d4f95678e337be59ad7 (patch)
tree7c63ee0af394b385ad4371ab4e75af968398c3a6
parentd01567411258358ddc6f632bf0ed2363a36ca795 (diff)
check-exports: Change symbol regex to work for gst-editing-services
https://bugzilla.gnome.org/show_bug.cgi?id=774641
-rwxr-xr-xcheck-exports2
-rw-r--r--win32.mak2
2 files changed, 2 insertions, 2 deletions
diff --git a/check-exports b/check-exports
index ee01ff7..8d617ff 100755
--- a/check-exports
+++ b/check-exports
@@ -29,7 +29,7 @@ fi
# BSS symbol, unlike on linux where it's a local absolute symbol.
nm $NMARGS $lib_path | awk \
'{
- if ($3 ~ /^[_]?(gst_|Gst|GST_).*/)
+ if ($3 ~ /^[_]?(gst_|Gst|GST_|ges_|Ges|GES_).*/)
{
if ($2 ~ /^[BSDG]$/)
print "\t" $3 " DATA"
diff --git a/win32.mak b/win32.mak
index 6060532..5d818bd 100644
--- a/win32.mak
+++ b/win32.mak
@@ -64,7 +64,7 @@ update-exports:
if test -f "$(top_srcdir)/win32/common/libgstgl.def"; then \
git checkout "$(top_srcdir)/win32/common/libgstgl.def"; \
fi
- git add $(top_srcdir)/win32/common/libgst*.def
+ git add $(top_srcdir)/win32/common/lib*.def
git diff --cached -- $(top_srcdir)/win32/common/
echo '^^^--- updated and staged changes above'