Blame depcomp

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