From 3a666542f3fac7ac59527873982e188c3a6d5ef6 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Thu, 25 Nov 2004 22:22:10 +0000 Subject: [PATCH] filter out G_GNUC stuff when doing the compare. Thu Nov 25 14:21:37 2004 Manish Singh * abicheck.sh: filter out G_GNUC stuff when doing the compare. --- gdk-pixbuf/ChangeLog | 4 ++++ gdk-pixbuf/abicheck.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 + + * abicheck.sh: filter out G_GNUC stuff when doing the compare. + 2004-11-23 Matthias Clasen * 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 -- 2.43.2