Qt: change the LocationBar Class file
[vlc/asuraparaju-public.git] / src / check_headers
bloba60a931517261ed6d78da2fc4cdea9dace2b7c28
1 #! /bin/sh
2 # Copyright © 2008 Rémi Denis-Courmont
4 cd "$(dirname "$0")" || exit $?
6 # Look for configure #defines in public headers.
7 # There are incorrect, as external users don't have our <config.h>.
8 regexp="$(cat ../config.h.in | \
9 sed -n -e 's/^#undef \([A-Z0-9_]*\)$/\1/p' | \
10 grep -v 'WORDS_BIGENDIAN' | \
11 xargs | \
12 sed -e 's/ /\\\|/g')"
14 echo Looking for private defines in public headers...
15 ! grep -- "$regexp" "$@" || exit $?
16 echo "None found."