forked from AuroraMiddleware/gtk
19a02e673e
Fri Dec 10 13:57:44 2004 Manish Singh <yosh@gimp.org> * abicheck.sh: filter out PRIVATE.
6 lines
275 B
Bash
Executable File
6 lines
275 B
Bash
Executable File
#! /bin/sh
|
|
|
|
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
|