check_headers
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:
midi
开发平台:
Unix_Linux
- #! /bin/sh
- # Copyright 漏 2008 R茅mi Denis-Courmont
- cd "$(dirname "$0")" || exit $?
- # Look for configure #defines in public headers.
- # There are incorrect, as external users don't have our <config.h>.
- regexp="$(cat ../config.h.in |
- sed -n -e 's/^#undef ([A-Z0-9_]*)$/1/p' |
- grep -v 'WORDS_BIGENDIAN' |
- xargs |
- sed -e 's/ /\|/g')"
- echo Looking for private defines in public headers...
- ! grep -- "$regexp" "$@" || exit $?
- echo "None found."