summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2005-08-07 13:47:25 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-08-07 13:47:25 +0000
commitf13dc6d43cf1600cb134e9812f5826f6552474ff (patch)
treee72800109e1f6f853c467ddef3e866544b0d6998 /gdk-pixbuf
parentd40699c1b5c77ec8ed3cd8233cfbb8eaea4bfa9f (diff)
downloadgdk-pixbuf-f13dc6d43cf1600cb134e9812f5826f6552474ff.tar.gz
Tighten up ABI checks a bit
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r--gdk-pixbuf/ChangeLog4
-rwxr-xr-xgdk-pixbuf/abicheck.sh4
2 files changed, 6 insertions, 2 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index e4f007871..438a8f70a 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,7 @@
+2005-08-07 Matthias Clasen <mclasen@redhat.com>
+
+ * abicheck.sh: Also check exported variables.
+
2005-08-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.7.5 ===
diff --git a/gdk-pixbuf/abicheck.sh b/gdk-pixbuf/abicheck.sh
index 989c5e4f2..aedfddf8c 100755
--- a/gdk-pixbuf/abicheck.sh
+++ b/gdk-pixbuf/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
-cpp -P -DALL_FILES ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
-nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
+cpp -DINCLUDE_VARIABLES -P -DALL_FILES ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
+nm -D .libs/libgdk_pixbuf-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi