]> Pileus Git - ~andy/gtk/commitdiff
filter out G_GNUC stuff when doing the compare.
authorManish Singh <yosh@gi,p.org>
Thu, 25 Nov 2004 22:22:10 +0000 (22:22 +0000)
committerManish Singh <yosh@src.gnome.org>
Thu, 25 Nov 2004 22:22:10 +0000 (22:22 +0000)
Thu Nov 25 14:21:37 2004  Manish Singh  <yosh@gi,p.org>

        * abicheck.sh: filter out G_GNUC stuff when doing the compare.

gdk-pixbuf/ChangeLog
gdk-pixbuf/abicheck.sh

index dbaab56b8c135da3f697cfe83aec370e407c40ae..31c5ab93fadea2c00378acf374b0bed898c26744 100644 (file)
@@ -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,
index fe617da648a65e7697e9447c69d2d236c960243e..3e39f4da50cedc6155612941458324c0a6f34c8e 100755 (executable)
@@ -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