summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/abicheck.sh
blob: aedfddf8cc582d5905f93dfe7e53f4dd599f87db (plain)
1
2
3
4
5
#! /bin/sh

cpp -DINCLUDE_VARIABLES -P -DALL_FILES ${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 " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi