]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/pltcheck.sh
[quartz] Delete the typedef of GdkDevicePrivate
[~andy/gtk] / gdk-pixbuf / pltcheck.sh
1 #!/bin/sh
2
3 LANG=C
4
5 status=0
6
7 if ! which readelf 2>/dev/null >/dev/null; then
8         echo "'readelf' not found; skipping test"
9         exit 0
10 fi
11
12 for so in .libs/libgdk_pixbuf*.so; do
13         echo Checking $so for local PLT entries
14         readelf -r $so | grep 'JU\?MP_SLOT' | grep 'gdk_pixbuf' && status=1
15 done
16
17 exit $status