Blame scripts/check-local-headers.sh

Packit Service 82fcde
#!/bin/bash
Packit Service 82fcde
# Copyright (C) 2005-2018 Free Software Foundation, Inc.
Packit Service 82fcde
# This file is part of the GNU C Library.
Packit Service 82fcde
Packit Service 82fcde
# The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
# modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
# License as published by the Free Software Foundation; either
Packit Service 82fcde
# version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
# The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
# Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
# You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
# License along with the GNU C Library; if not, see
Packit Service 82fcde
# <http://www.gnu.org/licenses/>.
Packit Service 82fcde
#
Packit Service 82fcde
includedir="$1"
Packit Service 82fcde
objpfx="$2"
Packit Service 82fcde
Packit Service 82fcde
# To avoid long paths.
Packit Service 82fcde
cd "$objpfx"
Packit Service 82fcde
Packit Service 82fcde
# OK if *.os is missing.
Packit Service 82fcde
shopt -s nullglob
Packit Service 82fcde
Packit Service 82fcde
# Search all dependency files for file names in the include directory.
Packit Service 82fcde
# There are a few system headers we are known to use.
Packit Service 82fcde
# These include Linux kernel headers (asm*, arch, and linux),
Packit Service 82fcde
# and Mach kernel headers (mach).
Packit Service 82fcde
exec ${AWK} -v includedir="$includedir" '
Packit Service 82fcde
BEGIN {
Packit Service 82fcde
  status = 0
Packit Service 82fcde
  exclude = "^" includedir \
Packit Service 82fcde
    "/(.*-.*-.*/|.*-.*/|)(asm[-/]|arch|linux/|selinux/|mach/|mach_debug/|device/|hurd/(((hurd|ioctl)_types|paths)\\.h|ioctls\\.defs|ihash\\.h)|cthreads\\.h|gd|nss3/|nspr4?/|c\\+\\+/|sys/(capability|sdt(|-config))\\.h|libaudit\\.h)"
Packit Service 82fcde
}
Packit Service 82fcde
/^[^ ]/ && $1 ~ /.*:/ { obj = $1 }
Packit Service 82fcde
{
Packit Service 82fcde
  for (i = 1; i <= NF; ++i) {
Packit Service 82fcde
    if ($i ~ ("^" includedir) && $i !~ exclude) {
Packit Service 82fcde
      print "***", obj, "uses", $i
Packit Service 82fcde
      status = 1
Packit Service 82fcde
    }
Packit Service 82fcde
  }
Packit Service 82fcde
}
Packit Service 82fcde
END { exit status }' */*.{o,os,oS}.d