filter out PRIVATE.

Fri Dec 10 13:57:44 2004  Manish Singh  <yosh@gimp.org>

        * abicheck.sh: filter out PRIVATE.
This commit is contained in:
Manish Singh 2004-12-10 21:58:05 +00:00 committed by Manish Singh
parent f5c7b5d236
commit 19a02e673e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Dec 10 13:57:44 2004 Manish Singh <yosh@gimp.org>
* abicheck.sh: filter out PRIVATE.
2004-12-05 Tor Lillqvist <tml@iki.fi>
* gdk-pixbuf-animation.c

View File

@ -1,5 +1,5 @@
#! /bin/sh
cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort > expected-abi
cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | 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