forked from AuroraMiddleware/gtk
3a666542f3
Thu Nov 25 14:21:37 2004 Manish Singh <yosh@gi,p.org> * abicheck.sh: filter out G_GNUC stuff when doing the compare.
6 lines
256 B
Bash
Executable File
6 lines
256 B
Bash
Executable File
#! /bin/sh
|
|
|
|
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
|