File: check.defs

package info (click to toggle)
pango1.0 1.20.5-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,964 kB
  • ctags: 8,723
  • sloc: ansic: 56,966; xml: 17,474; sh: 9,288; makefile: 1,424; perl: 330; cpp: 23
file content (29 lines) | stat: -rwxr-xr-x 617 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

LANG=C

test -z "$srcdir" && srcdir=.
status=0

get_pango_syms='nm "$so" | grep " T " | cut -d" " -f3'
if [ "`uname -s`" = "Linux" ]; then
	get_pango_syms='objdump -t "$so" | sed -n "/.*g *F *\.\(opd\|text\).* \(.*pango_.*\)$/s//\2/p"'
fi

for def in $srcdir/*.def; do
	lib=${def%.def}
	lib=${lib##*/}
	so=.libs/lib${lib}-1.0.so

	test -f "$so" || continue
	echo Checking $def

	expected=$lib.expected
	list=$lib.list
	eval $get_pango_syms | sort -u > "$expected"
	cut -f 2 "$def" | grep -v EXPORTS | sort -u > "$list"

	diff "$list" "$expected" && rm -f "$list" "$expected" || status=1
done

exit $status