mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-18 09:00:34 +00:00
6 lines
197 B
Bash
6 lines
197 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
cpp -P -DGDK_WINDOWING_X11 gdk.symbols | sed -e '/^$/d' | sort > expected-abi
|
||
|
nm -D .libs/libgdk-x11-2.0.so | grep " T " | cut -c12- | sort > actual-abi
|
||
|
diff -u expected-abi actual-abi
|