Blame depcomp

Packit Service a9274b
#! /bin/sh
Packit Service a9274b
# depcomp - compile a program generating dependencies as side-effects
Packit Service a9274b
Packit Service a9274b
scriptversion=2018-03-07.03; # UTC
Packit Service a9274b
Packit Service a9274b
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
Packit Service a9274b
Packit Service a9274b
# This program is free software; you can redistribute it and/or modify
Packit Service a9274b
# it under the terms of the GNU General Public License as published by
Packit Service a9274b
# the Free Software Foundation; either version 2, or (at your option)
Packit Service a9274b
# any later version.
Packit Service a9274b
Packit Service a9274b
# This program is distributed in the hope that it will be useful,
Packit Service a9274b
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a9274b
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a9274b
# GNU General Public License for more details.
Packit Service a9274b
Packit Service a9274b
# You should have received a copy of the GNU General Public License
Packit Service a9274b
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
Packit Service a9274b
Packit Service a9274b
# As a special exception to the GNU General Public License, if you
Packit Service a9274b
# distribute this file as part of a program that contains a
Packit Service a9274b
# configuration script generated by Autoconf, you may include it under
Packit Service a9274b
# the same distribution terms that you use for the rest of that program.
Packit Service a9274b
Packit Service a9274b
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
Packit Service a9274b
Packit Service a9274b
case $1 in
Packit Service a9274b
  '')
Packit Service a9274b
    echo "$0: No command.  Try '$0 --help' for more information." 1>&2
Packit Service a9274b
    exit 1;
Packit Service a9274b
    ;;
Packit Service a9274b
  -h | --h*)
Packit Service a9274b
    cat <<\EOF
Packit Service a9274b
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
Packit Service a9274b
Packit Service a9274b
Run PROGRAMS ARGS to compile a file, generating dependencies
Packit Service a9274b
as side-effects.
Packit Service a9274b
Packit Service a9274b
Environment variables:
Packit Service a9274b
  depmode     Dependency tracking mode.
Packit Service a9274b
  source      Source file read by 'PROGRAMS ARGS'.
Packit Service a9274b
  object      Object file output by 'PROGRAMS ARGS'.
Packit Service a9274b
  DEPDIR      directory where to store dependencies.
Packit Service a9274b
  depfile     Dependency file to output.
Packit Service a9274b
  tmpdepfile  Temporary file to use when outputting dependencies.
Packit Service a9274b
  libtool     Whether libtool is used (yes/no).
Packit Service a9274b
Packit Service a9274b
Report bugs to <bug-automake@gnu.org>.
Packit Service a9274b
EOF
Packit Service a9274b
    exit $?
Packit Service a9274b
    ;;
Packit Service a9274b
  -v | --v*)
Packit Service a9274b
    echo "depcomp $scriptversion"
Packit Service a9274b
    exit $?
Packit Service a9274b
    ;;
Packit Service a9274b
esac
Packit Service a9274b
Packit Service a9274b
# Get the directory component of the given path, and save it in the
Packit Service a9274b
# global variables '$dir'.  Note that this directory component will
Packit Service a9274b
# be either empty or ending with a '/' character.  This is deliberate.
Packit Service a9274b
set_dir_from ()
Packit Service a9274b
{
Packit Service a9274b
  case $1 in
Packit Service a9274b
    */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
Packit Service a9274b
      *) dir=;;
Packit Service a9274b
  esac
Packit Service a9274b
}
Packit Service a9274b
Packit Service a9274b
# Get the suffix-stripped basename of the given path, and save it the
Packit Service a9274b
# global variable '$base'.
Packit Service a9274b
set_base_from ()
Packit Service a9274b
{
Packit Service a9274b
  base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
Packit Service a9274b
}
Packit Service a9274b
Packit Service a9274b
# If no dependency file was actually created by the compiler invocation,
Packit Service a9274b
# we still have to create a dummy depfile, to avoid errors with the
Packit Service a9274b
# Makefile "include basename.Plo" scheme.
Packit Service a9274b
make_dummy_depfile ()
Packit Service a9274b
{
Packit Service a9274b
  echo "#dummy" > "$depfile"
Packit Service a9274b
}
Packit Service a9274b
Packit Service a9274b
# Factor out some common post-processing of the generated depfile.
Packit Service a9274b
# Requires the auxiliary global variable '$tmpdepfile' to be set.
Packit Service a9274b
aix_post_process_depfile ()
Packit Service a9274b
{
Packit Service a9274b
  # If the compiler actually managed to produce a dependency file,
Packit Service a9274b
  # post-process it.
Packit Service a9274b
  if test -f "$tmpdepfile"; then
Packit Service a9274b
    # Each line is of the form 'foo.o: dependency.h'.
Packit Service a9274b
    # Do two passes, one to just change these to
Packit Service a9274b
    #   $object: dependency.h
Packit Service a9274b
    # and one to simply output
Packit Service a9274b
    #   dependency.h:
Packit Service a9274b
    # which is needed to avoid the deleted-header problem.
Packit Service a9274b
    { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
Packit Service a9274b
      sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
Packit Service a9274b
    } > "$depfile"
Packit Service a9274b
    rm -f "$tmpdepfile"
Packit Service a9274b
  else
Packit Service a9274b
    make_dummy_depfile
Packit Service a9274b
  fi
Packit Service a9274b
}
Packit Service a9274b
Packit Service a9274b
# A tabulation character.
Packit Service a9274b
tab='	'
Packit Service a9274b
# A newline character.
Packit Service a9274b
nl='
Packit Service a9274b
'
Packit Service a9274b
# Character ranges might be problematic outside the C locale.
Packit Service a9274b
# These definitions help.
Packit Service a9274b
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
Packit Service a9274b
lower=abcdefghijklmnopqrstuvwxyz
Packit Service a9274b
digits=0123456789
Packit Service a9274b
alpha=${upper}${lower}
Packit Service a9274b
Packit Service a9274b
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
Packit Service a9274b
  echo "depcomp: Variables source, object and depmode must be set" 1>&2
Packit Service a9274b
  exit 1
Packit Service a9274b
fi
Packit Service a9274b
Packit Service a9274b
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
Packit Service a9274b
depfile=${depfile-`echo "$object" |
Packit Service a9274b
  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
Packit Service a9274b
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
Packit Service a9274b
Packit Service a9274b
rm -f "$tmpdepfile"
Packit Service a9274b
Packit Service a9274b
# Avoid interferences from the environment.
Packit Service a9274b
gccflag= dashmflag=
Packit Service a9274b
Packit Service a9274b
# Some modes work just like other modes, but use different flags.  We
Packit Service a9274b
# parameterize here, but still list the modes in the big case below,
Packit Service a9274b
# to make depend.m4 easier to write.  Note that we *cannot* use a case
Packit Service a9274b
# here, because this file can only contain one case statement.
Packit Service a9274b
if test "$depmode" = hp; then
Packit Service a9274b
  # HP compiler uses -M and no extra arg.
Packit Service a9274b
  gccflag=-M
Packit Service a9274b
  depmode=gcc
Packit Service a9274b
fi
Packit Service a9274b
Packit Service a9274b
if test "$depmode" = dashXmstdout; then
Packit Service a9274b
  # This is just like dashmstdout with a different argument.
Packit Service a9274b
  dashmflag=-xM
Packit Service a9274b
  depmode=dashmstdout
Packit Service a9274b
fi
Packit Service a9274b
Packit Service a9274b
cygpath_u="cygpath -u -f -"
Packit Service a9274b
if test "$depmode" = msvcmsys; then
Packit Service a9274b
  # This is just like msvisualcpp but w/o cygpath translation.
Packit Service a9274b
  # Just convert the backslash-escaped backslashes to single forward
Packit Service a9274b
  # slashes to satisfy depend.m4
Packit Service a9274b
  cygpath_u='sed s,\\\\,/,g'
Packit Service a9274b
  depmode=msvisualcpp
Packit Service a9274b
fi
Packit Service a9274b
Packit Service a9274b
if test "$depmode" = msvc7msys; then
Packit Service a9274b
  # This is just like msvc7 but w/o cygpath translation.
Packit Service a9274b
  # Just convert the backslash-escaped backslashes to single forward
Packit Service a9274b
  # slashes to satisfy depend.m4
Packit Service a9274b
  cygpath_u='sed s,\\\\,/,g'
Packit Service a9274b
  depmode=msvc7
Packit Service a9274b
fi
Packit Service a9274b
Packit Service a9274b
if test "$depmode" = xlc; then
Packit Service a9274b
  # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
Packit Service a9274b
  gccflag=-qmakedep=gcc,-MF
Packit Service a9274b
  depmode=gcc
Packit Service a9274b
fi
Packit Service a9274b
Packit Service a9274b
case "$depmode" in
Packit Service a9274b
gcc3)
Packit Service a9274b
## gcc 3 implements dependency tracking that does exactly what
Packit Service a9274b
## we want.  Yay!  Note: for some reason libtool 1.4 doesn't like
Packit Service a9274b
## it if -MD -MP comes after the -MF stuff.  Hmm.
Packit Service a9274b
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
Packit Service a9274b
## the command line argument order; so add the flags where they
Packit Service a9274b
## appear in depend2.am.  Note that the slowdown incurred here
Packit Service a9274b
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
Packit Service a9274b
  for arg
Packit Service a9274b
  do
Packit Service a9274b
    case $arg in
Packit Service a9274b
    -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
Packit Service a9274b
    *)  set fnord "$@" "$arg" ;;
Packit Service a9274b
    esac
Packit Service a9274b
    shift # fnord
Packit Service a9274b
    shift # $arg
Packit Service a9274b
  done
Packit Service a9274b
  "$@"
Packit Service a9274b
  stat=$?
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
  mv "$tmpdepfile" "$depfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
gcc)
Packit Service a9274b
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
Packit Service a9274b
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
Packit Service a9274b
## (see the conditional assignment to $gccflag above).
Packit Service a9274b
## There are various ways to get dependency output from gcc.  Here's
Packit Service a9274b
## why we pick this rather obscure method:
Packit Service a9274b
## - Don't want to use -MD because we'd like the dependencies to end
Packit Service a9274b
##   up in a subdir.  Having to rename by hand is ugly.
Packit Service a9274b
##   (We might end up doing this anyway to support other compilers.)
Packit Service a9274b
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
Packit Service a9274b
##   -MM, not -M (despite what the docs say).  Also, it might not be
Packit Service a9274b
##   supported by the other compilers which use the 'gcc' depmode.
Packit Service a9274b
## - Using -M directly means running the compiler twice (even worse
Packit Service a9274b
##   than renaming).
Packit Service a9274b
  if test -z "$gccflag"; then
Packit Service a9274b
    gccflag=-MD,
Packit Service a9274b
  fi
Packit Service a9274b
  "$@" -Wp,"$gccflag$tmpdepfile"
Packit Service a9274b
  stat=$?
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  echo "$object : \\" > "$depfile"
Packit Service a9274b
  # The second -e expression handles DOS-style file names with drive
Packit Service a9274b
  # letters.
Packit Service a9274b
  sed -e 's/^[^:]*: / /' \
Packit Service a9274b
      -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
Packit Service a9274b
## This next piece of magic avoids the "deleted header file" problem.
Packit Service a9274b
## The problem is that when a header file which appears in a .P file
Packit Service a9274b
## is deleted, the dependency causes make to die (because there is
Packit Service a9274b
## typically no way to rebuild the header).  We avoid this by adding
Packit Service a9274b
## dummy dependencies for each header file.  Too bad gcc doesn't do
Packit Service a9274b
## this for us directly.
Packit Service a9274b
## Some versions of gcc put a space before the ':'.  On the theory
Packit Service a9274b
## that the space means something, we add a space to the output as
Packit Service a9274b
## well.  hp depmode also adds that space, but also prefixes the VPATH
Packit Service a9274b
## to the object.  Take care to not repeat it in the output.
Packit Service a9274b
## Some versions of the HPUX 10.20 sed can't process this invocation
Packit Service a9274b
## correctly.  Breaking it into two sed invocations is a workaround.
Packit Service a9274b
  tr ' ' "$nl" < "$tmpdepfile" \
Packit Service a9274b
    | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
Packit Service a9274b
    | sed -e 's/$/ :/' >> "$depfile"
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
hp)
Packit Service a9274b
  # This case exists only to let depend.m4 do its work.  It works by
Packit Service a9274b
  # looking at the text of this script.  This case will never be run,
Packit Service a9274b
  # since it is checked for above.
Packit Service a9274b
  exit 1
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
sgi)
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    "$@" "-Wp,-MDupdate,$tmpdepfile"
Packit Service a9274b
  else
Packit Service a9274b
    "$@" -MDupdate "$tmpdepfile"
Packit Service a9274b
  fi
Packit Service a9274b
  stat=$?
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
Packit Service a9274b
  if test -f "$tmpdepfile"; then  # yes, the sourcefile depend on other files
Packit Service a9274b
    echo "$object : \\" > "$depfile"
Packit Service a9274b
    # Clip off the initial element (the dependent).  Don't try to be
Packit Service a9274b
    # clever and replace this with sed code, as IRIX sed won't handle
Packit Service a9274b
    # lines with more than a fixed number of characters (4096 in
Packit Service a9274b
    # IRIX 6.2 sed, 8192 in IRIX 6.5).  We also remove comment lines;
Packit Service a9274b
    # the IRIX cc adds comments like '#:fec' to the end of the
Packit Service a9274b
    # dependency line.
Packit Service a9274b
    tr ' ' "$nl" < "$tmpdepfile" \
Packit Service a9274b
      | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
Packit Service a9274b
      | tr "$nl" ' ' >> "$depfile"
Packit Service a9274b
    echo >> "$depfile"
Packit Service a9274b
    # The second pass generates a dummy entry for each header file.
Packit Service a9274b
    tr ' ' "$nl" < "$tmpdepfile" \
Packit Service a9274b
      | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
Packit Service a9274b
      >> "$depfile"
Packit Service a9274b
  else
Packit Service a9274b
    make_dummy_depfile
Packit Service a9274b
  fi
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
xlc)
Packit Service a9274b
  # This case exists only to let depend.m4 do its work.  It works by
Packit Service a9274b
  # looking at the text of this script.  This case will never be run,
Packit Service a9274b
  # since it is checked for above.
Packit Service a9274b
  exit 1
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
aix)
Packit Service a9274b
  # The C for AIX Compiler uses -M and outputs the dependencies
Packit Service a9274b
  # in a .u file.  In older versions, this file always lives in the
Packit Service a9274b
  # current directory.  Also, the AIX compiler puts '$object:' at the
Packit Service a9274b
  # start of each line; $object doesn't have directory information.
Packit Service a9274b
  # Version 6 uses the directory in both cases.
Packit Service a9274b
  set_dir_from "$object"
Packit Service a9274b
  set_base_from "$object"
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    tmpdepfile1=$dir$base.u
Packit Service a9274b
    tmpdepfile2=$base.u
Packit Service a9274b
    tmpdepfile3=$dir.libs/$base.u
Packit Service a9274b
    "$@" -Wc,-M
Packit Service a9274b
  else
Packit Service a9274b
    tmpdepfile1=$dir$base.u
Packit Service a9274b
    tmpdepfile2=$dir$base.u
Packit Service a9274b
    tmpdepfile3=$dir$base.u
Packit Service a9274b
    "$@" -M
Packit Service a9274b
  fi
Packit Service a9274b
  stat=$?
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit Service a9274b
  do
Packit Service a9274b
    test -f "$tmpdepfile" && break
Packit Service a9274b
  done
Packit Service a9274b
  aix_post_process_depfile
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
tcc)
Packit Service a9274b
  # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
Packit Service a9274b
  # FIXME: That version still under development at the moment of writing.
Packit Service a9274b
  #        Make that this statement remains true also for stable, released
Packit Service a9274b
  #        versions.
Packit Service a9274b
  # It will wrap lines (doesn't matter whether long or short) with a
Packit Service a9274b
  # trailing '\', as in:
Packit Service a9274b
  #
Packit Service a9274b
  #   foo.o : \
Packit Service a9274b
  #    foo.c \
Packit Service a9274b
  #    foo.h \
Packit Service a9274b
  #
Packit Service a9274b
  # It will put a trailing '\' even on the last line, and will use leading
Packit Service a9274b
  # spaces rather than leading tabs (at least since its commit 0394caf7
Packit Service a9274b
  # "Emit spaces for -MD").
Packit Service a9274b
  "$@" -MD -MF "$tmpdepfile"
Packit Service a9274b
  stat=$?
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
Packit Service a9274b
  # We have to change lines of the first kind to '$object: \'.
Packit Service a9274b
  sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
Packit Service a9274b
  # And for each line of the second kind, we have to emit a 'dep.h:'
Packit Service a9274b
  # dummy dependency, to avoid the deleted-header problem.
Packit Service a9274b
  sed -n -e 's|^  *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
## The order of this option in the case statement is important, since the
Packit Service a9274b
## shell code in configure will try each of these formats in the order
Packit Service a9274b
## listed in this file.  A plain '-MD' option would be understood by many
Packit Service a9274b
## compilers, so we must ensure this comes after the gcc and icc options.
Packit Service a9274b
pgcc)
Packit Service a9274b
  # Portland's C compiler understands '-MD'.
Packit Service a9274b
  # Will always output deps to 'file.d' where file is the root name of the
Packit Service a9274b
  # source file under compilation, even if file resides in a subdirectory.
Packit Service a9274b
  # The object file name does not affect the name of the '.d' file.
Packit Service a9274b
  # pgcc 10.2 will output
Packit Service a9274b
  #    foo.o: sub/foo.c sub/foo.h
Packit Service a9274b
  # and will wrap long lines using '\' :
Packit Service a9274b
  #    foo.o: sub/foo.c ... \
Packit Service a9274b
  #     sub/foo.h ... \
Packit Service a9274b
  #     ...
Packit Service a9274b
  set_dir_from "$object"
Packit Service a9274b
  # Use the source, not the object, to determine the base name, since
Packit Service a9274b
  # that's sadly what pgcc will do too.
Packit Service a9274b
  set_base_from "$source"
Packit Service a9274b
  tmpdepfile=$base.d
Packit Service a9274b
Packit Service a9274b
  # For projects that build the same source file twice into different object
Packit Service a9274b
  # files, the pgcc approach of using the *source* file root name can cause
Packit Service a9274b
  # problems in parallel builds.  Use a locking strategy to avoid stomping on
Packit Service a9274b
  # the same $tmpdepfile.
Packit Service a9274b
  lockdir=$base.d-lock
Packit Service a9274b
  trap "
Packit Service a9274b
    echo '$0: caught signal, cleaning up...' >&2
Packit Service a9274b
    rmdir '$lockdir'
Packit Service a9274b
    exit 1
Packit Service a9274b
  " 1 2 13 15
Packit Service a9274b
  numtries=100
Packit Service a9274b
  i=$numtries
Packit Service a9274b
  while test $i -gt 0; do
Packit Service a9274b
    # mkdir is a portable test-and-set.
Packit Service a9274b
    if mkdir "$lockdir" 2>/dev/null; then
Packit Service a9274b
      # This process acquired the lock.
Packit Service a9274b
      "$@" -MD
Packit Service a9274b
      stat=$?
Packit Service a9274b
      # Release the lock.
Packit Service a9274b
      rmdir "$lockdir"
Packit Service a9274b
      break
Packit Service a9274b
    else
Packit Service a9274b
      # If the lock is being held by a different process, wait
Packit Service a9274b
      # until the winning process is done or we timeout.
Packit Service a9274b
      while test -d "$lockdir" && test $i -gt 0; do
Packit Service a9274b
        sleep 1
Packit Service a9274b
        i=`expr $i - 1`
Packit Service a9274b
      done
Packit Service a9274b
    fi
Packit Service a9274b
    i=`expr $i - 1`
Packit Service a9274b
  done
Packit Service a9274b
  trap - 1 2 13 15
Packit Service a9274b
  if test $i -le 0; then
Packit Service a9274b
    echo "$0: failed to acquire lock after $numtries attempts" >&2
Packit Service a9274b
    echo "$0: check lockdir '$lockdir'" >&2
Packit Service a9274b
    exit 1
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  # Each line is of the form `foo.o: dependent.h',
Packit Service a9274b
  # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
Packit Service a9274b
  # Do two passes, one to just change these to
Packit Service a9274b
  # `$object: dependent.h' and one to simply `dependent.h:'.
Packit Service a9274b
  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
Packit Service a9274b
  # Some versions of the HPUX 10.20 sed can't process this invocation
Packit Service a9274b
  # correctly.  Breaking it into two sed invocations is a workaround.
Packit Service a9274b
  sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
Packit Service a9274b
    | sed -e 's/$/ :/' >> "$depfile"
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
hp2)
Packit Service a9274b
  # The "hp" stanza above does not work with aCC (C++) and HP's ia64
Packit Service a9274b
  # compilers, which have integrated preprocessors.  The correct option
Packit Service a9274b
  # to use with these is +Maked; it writes dependencies to a file named
Packit Service a9274b
  # 'foo.d', which lands next to the object file, wherever that
Packit Service a9274b
  # happens to be.
Packit Service a9274b
  # Much of this is similar to the tru64 case; see comments there.
Packit Service a9274b
  set_dir_from  "$object"
Packit Service a9274b
  set_base_from "$object"
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    tmpdepfile1=$dir$base.d
Packit Service a9274b
    tmpdepfile2=$dir.libs/$base.d
Packit Service a9274b
    "$@" -Wc,+Maked
Packit Service a9274b
  else
Packit Service a9274b
    tmpdepfile1=$dir$base.d
Packit Service a9274b
    tmpdepfile2=$dir$base.d
Packit Service a9274b
    "$@" +Maked
Packit Service a9274b
  fi
Packit Service a9274b
  stat=$?
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
     rm -f "$tmpdepfile1" "$tmpdepfile2"
Packit Service a9274b
     exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
Packit Service a9274b
  do
Packit Service a9274b
    test -f "$tmpdepfile" && break
Packit Service a9274b
  done
Packit Service a9274b
  if test -f "$tmpdepfile"; then
Packit Service a9274b
    sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
Packit Service a9274b
    # Add 'dependent.h:' lines.
Packit Service a9274b
    sed -ne '2,${
Packit Service a9274b
               s/^ *//
Packit Service a9274b
               s/ \\*$//
Packit Service a9274b
               s/$/:/
Packit Service a9274b
               p
Packit Service a9274b
             }' "$tmpdepfile" >> "$depfile"
Packit Service a9274b
  else
Packit Service a9274b
    make_dummy_depfile
Packit Service a9274b
  fi
Packit Service a9274b
  rm -f "$tmpdepfile" "$tmpdepfile2"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
tru64)
Packit Service a9274b
  # The Tru64 compiler uses -MD to generate dependencies as a side
Packit Service a9274b
  # effect.  'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
Packit Service a9274b
  # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
Packit Service a9274b
  # dependencies in 'foo.d' instead, so we check for that too.
Packit Service a9274b
  # Subdirectories are respected.
Packit Service a9274b
  set_dir_from  "$object"
Packit Service a9274b
  set_base_from "$object"
Packit Service a9274b
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    # Libtool generates 2 separate objects for the 2 libraries.  These
Packit Service a9274b
    # two compilations output dependencies in $dir.libs/$base.o.d and
Packit Service a9274b
    # in $dir$base.o.d.  We have to check for both files, because
Packit Service a9274b
    # one of the two compilations can be disabled.  We should prefer
Packit Service a9274b
    # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
Packit Service a9274b
    # automatically cleaned when .libs/ is deleted, while ignoring
Packit Service a9274b
    # the former would cause a distcleancheck panic.
Packit Service a9274b
    tmpdepfile1=$dir$base.o.d          # libtool 1.5
Packit Service a9274b
    tmpdepfile2=$dir.libs/$base.o.d    # Likewise.
Packit Service a9274b
    tmpdepfile3=$dir.libs/$base.d      # Compaq CCC V6.2-504
Packit Service a9274b
    "$@" -Wc,-MD
Packit Service a9274b
  else
Packit Service a9274b
    tmpdepfile1=$dir$base.d
Packit Service a9274b
    tmpdepfile2=$dir$base.d
Packit Service a9274b
    tmpdepfile3=$dir$base.d
Packit Service a9274b
    "$@" -MD
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  stat=$?
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
Packit Service a9274b
  do
Packit Service a9274b
    test -f "$tmpdepfile" && break
Packit Service a9274b
  done
Packit Service a9274b
  # Same post-processing that is required for AIX mode.
Packit Service a9274b
  aix_post_process_depfile
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
msvc7)
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    showIncludes=-Wc,-showIncludes
Packit Service a9274b
  else
Packit Service a9274b
    showIncludes=-showIncludes
Packit Service a9274b
  fi
Packit Service a9274b
  "$@" $showIncludes > "$tmpdepfile"
Packit Service a9274b
  stat=$?
Packit Service a9274b
  grep -v '^Note: including file: ' "$tmpdepfile"
Packit Service a9274b
  if test $stat -ne 0; then
Packit Service a9274b
    rm -f "$tmpdepfile"
Packit Service a9274b
    exit $stat
Packit Service a9274b
  fi
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  echo "$object : \\" > "$depfile"
Packit Service a9274b
  # The first sed program below extracts the file names and escapes
Packit Service a9274b
  # backslashes for cygpath.  The second sed program outputs the file
Packit Service a9274b
  # name when reading, but also accumulates all include files in the
Packit Service a9274b
  # hold buffer in order to output them again at the end.  This only
Packit Service a9274b
  # works with sed implementations that can handle large buffers.
Packit Service a9274b
  sed < "$tmpdepfile" -n '
Packit Service a9274b
/^Note: including file:  *\(.*\)/ {
Packit Service a9274b
  s//\1/
Packit Service a9274b
  s/\\/\\\\/g
Packit Service a9274b
  p
Packit Service a9274b
}' | $cygpath_u | sort -u | sed -n '
Packit Service a9274b
s/ /\\ /g
Packit Service a9274b
s/\(.*\)/'"$tab"'\1 \\/p
Packit Service a9274b
s/.\(.*\) \\/\1:/
Packit Service a9274b
H
Packit Service a9274b
$ {
Packit Service a9274b
  s/.*/'"$tab"'/
Packit Service a9274b
  G
Packit Service a9274b
  p
Packit Service a9274b
}' >> "$depfile"
Packit Service a9274b
  echo >> "$depfile" # make sure the fragment doesn't end with a backslash
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
msvc7msys)
Packit Service a9274b
  # This case exists only to let depend.m4 do its work.  It works by
Packit Service a9274b
  # looking at the text of this script.  This case will never be run,
Packit Service a9274b
  # since it is checked for above.
Packit Service a9274b
  exit 1
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
#nosideeffect)
Packit Service a9274b
  # This comment above is used by automake to tell side-effect
Packit Service a9274b
  # dependency tracking mechanisms from slower ones.
Packit Service a9274b
Packit Service a9274b
dashmstdout)
Packit Service a9274b
  # Important note: in order to support this mode, a compiler *must*
Packit Service a9274b
  # always write the preprocessed file to stdout, regardless of -o.
Packit Service a9274b
  "$@" || exit $?
Packit Service a9274b
Packit Service a9274b
  # Remove the call to Libtool.
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    while test "X$1" != 'X--mode=compile'; do
Packit Service a9274b
      shift
Packit Service a9274b
    done
Packit Service a9274b
    shift
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  # Remove '-o $object'.
Packit Service a9274b
  IFS=" "
Packit Service a9274b
  for arg
Packit Service a9274b
  do
Packit Service a9274b
    case $arg in
Packit Service a9274b
    -o)
Packit Service a9274b
      shift
Packit Service a9274b
      ;;
Packit Service a9274b
    $object)
Packit Service a9274b
      shift
Packit Service a9274b
      ;;
Packit Service a9274b
    *)
Packit Service a9274b
      set fnord "$@" "$arg"
Packit Service a9274b
      shift # fnord
Packit Service a9274b
      shift # $arg
Packit Service a9274b
      ;;
Packit Service a9274b
    esac
Packit Service a9274b
  done
Packit Service a9274b
Packit Service a9274b
  test -z "$dashmflag" && dashmflag=-M
Packit Service a9274b
  # Require at least two characters before searching for ':'
Packit Service a9274b
  # in the target name.  This is to cope with DOS-style filenames:
Packit Service a9274b
  # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
Packit Service a9274b
  "$@" $dashmflag |
Packit Service a9274b
    sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  cat < "$tmpdepfile" > "$depfile"
Packit Service a9274b
  # Some versions of the HPUX 10.20 sed can't process this sed invocation
Packit Service a9274b
  # correctly.  Breaking it into two sed invocations is a workaround.
Packit Service a9274b
  tr ' ' "$nl" < "$tmpdepfile" \
Packit Service a9274b
    | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
Packit Service a9274b
    | sed -e 's/$/ :/' >> "$depfile"
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
dashXmstdout)
Packit Service a9274b
  # This case only exists to satisfy depend.m4.  It is never actually
Packit Service a9274b
  # run, as this mode is specially recognized in the preamble.
Packit Service a9274b
  exit 1
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
makedepend)
Packit Service a9274b
  "$@" || exit $?
Packit Service a9274b
  # Remove any Libtool call
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    while test "X$1" != 'X--mode=compile'; do
Packit Service a9274b
      shift
Packit Service a9274b
    done
Packit Service a9274b
    shift
Packit Service a9274b
  fi
Packit Service a9274b
  # X makedepend
Packit Service a9274b
  shift
Packit Service a9274b
  cleared=no eat=no
Packit Service a9274b
  for arg
Packit Service a9274b
  do
Packit Service a9274b
    case $cleared in
Packit Service a9274b
    no)
Packit Service a9274b
      set ""; shift
Packit Service a9274b
      cleared=yes ;;
Packit Service a9274b
    esac
Packit Service a9274b
    if test $eat = yes; then
Packit Service a9274b
      eat=no
Packit Service a9274b
      continue
Packit Service a9274b
    fi
Packit Service a9274b
    case "$arg" in
Packit Service a9274b
    -D*|-I*)
Packit Service a9274b
      set fnord "$@" "$arg"; shift ;;
Packit Service a9274b
    # Strip any option that makedepend may not understand.  Remove
Packit Service a9274b
    # the object too, otherwise makedepend will parse it as a source file.
Packit Service a9274b
    -arch)
Packit Service a9274b
      eat=yes ;;
Packit Service a9274b
    -*|$object)
Packit Service a9274b
      ;;
Packit Service a9274b
    *)
Packit Service a9274b
      set fnord "$@" "$arg"; shift ;;
Packit Service a9274b
    esac
Packit Service a9274b
  done
Packit Service a9274b
  obj_suffix=`echo "$object" | sed 's/^.*\././'`
Packit Service a9274b
  touch "$tmpdepfile"
Packit Service a9274b
  ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  # makedepend may prepend the VPATH from the source file name to the object.
Packit Service a9274b
  # No need to regex-escape $object, excess matching of '.' is harmless.
Packit Service a9274b
  sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
Packit Service a9274b
  # Some versions of the HPUX 10.20 sed can't process the last invocation
Packit Service a9274b
  # correctly.  Breaking it into two sed invocations is a workaround.
Packit Service a9274b
  sed '1,2d' "$tmpdepfile" \
Packit Service a9274b
    | tr ' ' "$nl" \
Packit Service a9274b
    | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
Packit Service a9274b
    | sed -e 's/$/ :/' >> "$depfile"
Packit Service a9274b
  rm -f "$tmpdepfile" "$tmpdepfile".bak
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
cpp)
Packit Service a9274b
  # Important note: in order to support this mode, a compiler *must*
Packit Service a9274b
  # always write the preprocessed file to stdout.
Packit Service a9274b
  "$@" || exit $?
Packit Service a9274b
Packit Service a9274b
  # Remove the call to Libtool.
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    while test "X$1" != 'X--mode=compile'; do
Packit Service a9274b
      shift
Packit Service a9274b
    done
Packit Service a9274b
    shift
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  # Remove '-o $object'.
Packit Service a9274b
  IFS=" "
Packit Service a9274b
  for arg
Packit Service a9274b
  do
Packit Service a9274b
    case $arg in
Packit Service a9274b
    -o)
Packit Service a9274b
      shift
Packit Service a9274b
      ;;
Packit Service a9274b
    $object)
Packit Service a9274b
      shift
Packit Service a9274b
      ;;
Packit Service a9274b
    *)
Packit Service a9274b
      set fnord "$@" "$arg"
Packit Service a9274b
      shift # fnord
Packit Service a9274b
      shift # $arg
Packit Service a9274b
      ;;
Packit Service a9274b
    esac
Packit Service a9274b
  done
Packit Service a9274b
Packit Service a9274b
  "$@" -E \
Packit Service a9274b
    | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
Packit Service a9274b
             -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
Packit Service a9274b
    | sed '$ s: \\$::' > "$tmpdepfile"
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  echo "$object : \\" > "$depfile"
Packit Service a9274b
  cat < "$tmpdepfile" >> "$depfile"
Packit Service a9274b
  sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
msvisualcpp)
Packit Service a9274b
  # Important note: in order to support this mode, a compiler *must*
Packit Service a9274b
  # always write the preprocessed file to stdout.
Packit Service a9274b
  "$@" || exit $?
Packit Service a9274b
Packit Service a9274b
  # Remove the call to Libtool.
Packit Service a9274b
  if test "$libtool" = yes; then
Packit Service a9274b
    while test "X$1" != 'X--mode=compile'; do
Packit Service a9274b
      shift
Packit Service a9274b
    done
Packit Service a9274b
    shift
Packit Service a9274b
  fi
Packit Service a9274b
Packit Service a9274b
  IFS=" "
Packit Service a9274b
  for arg
Packit Service a9274b
  do
Packit Service a9274b
    case "$arg" in
Packit Service a9274b
    -o)
Packit Service a9274b
      shift
Packit Service a9274b
      ;;
Packit Service a9274b
    $object)
Packit Service a9274b
      shift
Packit Service a9274b
      ;;
Packit Service a9274b
    "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
Packit Service a9274b
        set fnord "$@"
Packit Service a9274b
        shift
Packit Service a9274b
        shift
Packit Service a9274b
        ;;
Packit Service a9274b
    *)
Packit Service a9274b
        set fnord "$@" "$arg"
Packit Service a9274b
        shift
Packit Service a9274b
        shift
Packit Service a9274b
        ;;
Packit Service a9274b
    esac
Packit Service a9274b
  done
Packit Service a9274b
  "$@" -E 2>/dev/null |
Packit Service a9274b
  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
Packit Service a9274b
  rm -f "$depfile"
Packit Service a9274b
  echo "$object : \\" > "$depfile"
Packit Service a9274b
  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
Packit Service a9274b
  echo "$tab" >> "$depfile"
Packit Service a9274b
  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
Packit Service a9274b
  rm -f "$tmpdepfile"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
msvcmsys)
Packit Service a9274b
  # This case exists only to let depend.m4 do its work.  It works by
Packit Service a9274b
  # looking at the text of this script.  This case will never be run,
Packit Service a9274b
  # since it is checked for above.
Packit Service a9274b
  exit 1
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
none)
Packit Service a9274b
  exec "$@"
Packit Service a9274b
  ;;
Packit Service a9274b
Packit Service a9274b
*)
Packit Service a9274b
  echo "Unknown depmode $depmode" 1>&2
Packit Service a9274b
  exit 1
Packit Service a9274b
  ;;
Packit Service a9274b
esac
Packit Service a9274b
Packit Service a9274b
exit 0
Packit Service a9274b
Packit Service a9274b
# Local Variables:
Packit Service a9274b
# mode: shell-script
Packit Service a9274b
# sh-indentation: 2
Packit Service a9274b
# eval: (add-hook 'before-save-hook 'time-stamp)
Packit Service a9274b
# time-stamp-start: "scriptversion="
Packit Service a9274b
# time-stamp-format: "%:y-%02m-%02d.%02H"
Packit Service a9274b
# time-stamp-time-zone: "UTC0"
Packit Service a9274b
# time-stamp-end: "; # UTC"
Packit Service a9274b
# End: