mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-26 20:30:11 +01:00
27 lines
564 B
Bash
Executable file
27 lines
564 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
stat=0
|
|
|
|
echo Checking public headers for missing cairo_public decorators
|
|
|
|
cd "$srcdir"
|
|
FILES=$all_cairo_headers
|
|
if test "x$FILES" = x; then
|
|
FILES=`find . -name 'cairo*.h' ! -name '*-private.h' ! -name 'cairoint.h'`
|
|
fi
|
|
|
|
grep -B 1 '^cairo_.*[ ]\+(' /dev/null $FILES |
|
|
awk '
|
|
/^--$/ { context=""; public=0; next; }
|
|
/:cairo_.*[ ]+\(/ { if (!public) {print context; print; print "--";} next; }
|
|
/-cairo_public.*[ ]/ {public=1;}
|
|
{ context=$0; }
|
|
' |
|
|
sed 's/[.]h-/.h:/' |
|
|
grep . >&2 && stat=1
|
|
|
|
exit $stat
|