forked from AuroraMiddleware/gtk
8a5db20e48
Mon Nov 15 18:58:22 2004 Manish Singh <yosh@gimp.org> * gdk-pixbuf-private.h: _gdk_pixbuf_lock now returns a gboolean. * abicheck.sh: don't hardcode lengths for cut, instead split on the third field.
6 lines
236 B
Bash
Executable File
6 lines
236 B
Bash
Executable File
#! /bin/sh
|
|
|
|
cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' | 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
|