summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Singh <yosh@gi,p.org>2004-11-25 22:22:10 +0000
committerManish Singh <yosh@src.gnome.org>2004-11-25 22:22:10 +0000
commit3a666542f3fac7ac59527873982e188c3a6d5ef6 (patch)
tree53b6982d138cc6281cfd668cd89012015c078af1
parent3ab0c4fc7b0708644bc07aca8f9ac6e86763a078 (diff)
downloadgdk-pixbuf-3a666542f3fac7ac59527873982e188c3a6d5ef6.tar.gz
filter out G_GNUC stuff when doing the compare.
Thu Nov 25 14:21:37 2004 Manish Singh <yosh@gi,p.org> * abicheck.sh: filter out G_GNUC stuff when doing the compare.
-rw-r--r--gdk-pixbuf/ChangeLog4
-rwxr-xr-xgdk-pixbuf/abicheck.sh2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index dbaab56b8..31c5ab93f 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,7 @@
+Thu Nov 25 14:21:37 2004 Manish Singh <yosh@gi,p.org>
+
+ * abicheck.sh: filter out G_GNUC stuff when doing the compare.
+
2004-11-23 Matthias Clasen <mclasen@redhat.com>
* gdk-pixbuf-core.h: Don't mark gdk_pixbuf_error_quark() as const,
diff --git a/gdk-pixbuf/abicheck.sh b/gdk-pixbuf/abicheck.sh
index fe617da64..3e39f4da5 100755
--- a/gdk-pixbuf/abicheck.sh
+++ b/gdk-pixbuf/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
-cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' | sort > expected-abi
+cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort > expected-abi
nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi