harfbuzz/src/check-includes.sh

45 lines
1.1 KiB
Bash
Raw Normal View History

2011-05-27 21:58:54 +02:00
#!/bin/sh
LC_ALL=C
export LC_ALL
test -z "$srcdir" && srcdir=.
stat=0
2013-08-27 00:46:21 +02:00
test "x$HBHEADERS" = x && HBHEADERS=`cd "$srcdir"; find . -maxdepth 1 -name 'hb*.h'`
test "x$HBSOURCES" = x && HBSOURCES=`cd "$srcdir"; find . -maxdepth 1 -name 'hb-*.cc' -or -name 'hb-*.hh'`
2011-05-27 21:58:54 +02:00
echo 'Checking that public header files #include "hb-common.h" or "hb.h" first (or none)'
for x in $HBHEADERS; do
test -f "$srcdir/$x" -a ! -f "$x" && x="$srcdir/$x"
2011-05-27 21:58:54 +02:00
grep '#.*\<include\>' "$x" /dev/null | head -n 1
done |
grep -v '"hb-common[.]h"' |
grep -v '"hb[.]h"' |
grep -v 'hb-common[.]h:' |
grep -v 'hb[.]h:' |
grep . >&2 && stat=1
echo 'Checking that source files #include a private header first (or none)'
2011-05-27 21:58:54 +02:00
for x in $HBSOURCES; do
test -f "$srcdir/$x" -a ! -f "$x" && x="$srcdir/$x"
grep '#.*\<include\>' "$x" /dev/null | head -n 1
2011-05-27 21:58:54 +02:00
done |
grep -v '"hb-.*[.]hh"' |
grep -v 'hb[.]hh' |
2011-05-27 21:58:54 +02:00
grep . >&2 && stat=1
2017-10-30 16:48:09 +01:00
echo 'Checking that there is no #include <hb-*.h>'
2013-08-27 03:15:29 +02:00
for x in $HBHEADERS $HBSOURCES; do
test -f "$srcdir/$x" && x="$srcdir/$x"
grep '#.*\<include\>.*<.*hb' "$x" /dev/null >&2 && stat=1
done
2011-05-27 21:58:54 +02:00
exit $stat