]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/abicheck.sh
No need for INCLUDE_INTERNAL_SYMBOLS anymore.
[~andy/gtk] / gdk-pixbuf / abicheck.sh
1 #! /bin/sh
2
3 cpp -P gdk-pixbuf.symbols | sed -e '/^$/d' | sort > expected-abi
4 nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -c12- | sort > actual-abi
5 diff -u expected-abi actual-abi