forked from AuroraMiddleware/gtk
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.
This commit is contained in:
parent
3ab0c4fc7b
commit
3a666542f3
@ -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,
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user