fontconfig/doc/check-missing-doc
Keith Packard 1315db01b6 Revert "Remove fcprivate.h, move the remaining macros to fcint.h."
This reverts commit b607922909acfc7ae96de688ed34efd19cd038ac.

Conflicts:

	src/Makefile.am

Xft still uses the macros that are in fcprivate.h. Document those macros and
include fcprivate.h in the published header files.
2007-11-13 15:48:30 -08:00

25 lines
529 B
Bash

#!/bin/sh
header=fontconfig-header
doc=fontconfig-doc
trap "rm $header $doc" 0 1 15
top_srcdir=${top_srcdir-".."}
(
cat $top_srcdir/fontconfig/*.h | grep '^Fc' |
grep -v FcPublic | sed 's/[^a-zA-Z0-9].*//';
cat $top_srcdir/fontconfig/*.h |
sed -n 's/#define \(Fc[a-zA-Z]*\)(.*$/\1/p') |
sort -u > $header
grep '@FUNC[+]*@' $top_srcdir/doc/*.fncs |
awk '{print $2}' |
sort -u > $doc
if cmp $doc $header > /dev/null; then
exit 0
fi
echo \
'Library Export Documentation'
diff -y $header $doc | grep '[<>]'
exit 1