check_headers
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:

midi

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # Copyright 漏 2008 R茅mi Denis-Courmont
  3. cd "$(dirname "$0")" || exit $?
  4. # Look for configure #defines in public headers.
  5. # There are incorrect, as external users don't have our <config.h>.
  6. regexp="$(cat ../config.h.in | 
  7. sed -n -e 's/^#undef ([A-Z0-9_]*)$/1/p' | 
  8. grep -v 'WORDS_BIGENDIAN' | 
  9. xargs | 
  10. sed -e 's/ /\|/g')"
  11. echo Looking for private defines in public headers...
  12. ! grep -- "$regexp" "$@" || exit $?
  13. echo "None found."