mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-21 23:48:12 +02:00
36 lines
711 B
Bash
Executable file
36 lines
711 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LANG=C
|
|
|
|
if ! which nm 2>/dev/null >/dev/null; then
|
|
echo "'nm' not found; skipping test"
|
|
exit 0
|
|
fi
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
status=0
|
|
|
|
get_cairo_syms='nm "$so" | grep " T " | cut -d" " -f3'
|
|
if [ "`uname -s`" = "Linux" ]; then
|
|
get_cairo_syms='objdump -t "$so" | sed -n "/.*g *F *\.\(opd\|text\).* \(.*cairo_.*\)$/s//\2/p"'
|
|
fi
|
|
|
|
defs="cairo.def"
|
|
make $defs
|
|
for def in $defs; do
|
|
lib=${def%.def}
|
|
lib=${lib##*/}
|
|
so=.libs/lib${lib}.so
|
|
|
|
test -f $so || continue
|
|
echo Checking $def
|
|
|
|
{
|
|
echo EXPORTS
|
|
eval $get_cairo_syms | grep -v '^_cairo_.*_test_\|^_fini\|^_init' | sort -u
|
|
# cheat: copy the last line from the def file!
|
|
tail -n1 $def
|
|
} | diff $def - || status=1
|
|
done
|
|
|
|
exit $status
|