diff options
-rw-r--r-- | gdk-pixbuf/ChangeLog | 4 | ||||
-rwxr-xr-x | gdk-pixbuf/abicheck.sh | 2 |
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 |