[SCM] vlc/master: Remove more automatically generated files.

bdrung at users.alioth.debian.org bdrung at users.alioth.debian.org
Tue Feb 28 23:02:52 UTC 2012


The following commit has been merged in the master branch:
commit c24e77238473d30edad354bcdb8572d1d4146903
Author: Benjamin Drung <bdrung at debian.org>
Date:   Tue Feb 28 23:21:16 2012 +0100

    Remove more automatically generated files.

diff --git a/autotools/compile b/autotools/compile
deleted file mode 100755
index bac481c..0000000
--- a/autotools/compile
+++ /dev/null
@@ -1,310 +0,0 @@
-#! /bin/sh
-# Wrapper for compilers which do not understand `-c -o'.
-
-scriptversion=2010-11-15.09; # UTC
-
-# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010 Free Software
-# Foundation, Inc.
-# Written by Tom Tromey <tromey at cygnus.com>.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# This file is maintained in Automake, please report
-# bugs to <bug-automake at gnu.org> or send patches to
-# <automake-patches at gnu.org>.
-
-nl='
-'
-
-# We need space, tab and new line, in precisely that order.  Quoting is
-# there to prevent tools from complaining about whitespace usage.
-IFS=" ""	$nl"
-
-file_conv=
-
-# func_file_conv build_file lazy
-# Convert a $build file to $host form and store it in $file
-# Currently only supports Win32 hosts. If the determined conversion
-# type is listed in (the comma separated) LAZY, no conversion will
-# take place.
-func_file_conv ()
-{
-  file=$1
-  case $file in
-    / | /[!/]*) # absolute file, and not a UNC file
-      if test -z "$file_conv"; then
-	# lazily determine how to convert abs files
-	case `uname -s` in
-	  MINGW*)
-	    file_conv=mingw
-	    ;;
-	  CYGWIN*)
-	    file_conv=cygwin
-	    ;;
-	  *)
-	    file_conv=wine
-	    ;;
-	esac
-      fi
-      case $file_conv/,$2, in
-	*,$file_conv,*)
-	  ;;
-	mingw/*)
-	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
-	  ;;
-	cygwin/*)
-	  file=`cygpath -m "$file" || echo "$file"`
-	  ;;
-	wine/*)
-	  file=`winepath -w "$file" || echo "$file"`
-	  ;;
-      esac
-      ;;
-  esac
-}
-
-# func_cl_wrapper cl arg...
-# Adjust compile command to suit cl
-func_cl_wrapper ()
-{
-  # Assume a capable shell
-  lib_path=
-  shared=:
-  linker_opts=
-  for arg
-  do
-    if test -n "$eat"; then
-      eat=
-    else
-      case $1 in
-	-o)
-	  # configure might choose to run compile as `compile cc -o foo foo.c'.
-	  eat=1
-	  case $2 in
-	    *.o | *.[oO][bB][jJ])
-	      func_file_conv "$2"
-	      set x "$@" -Fo"$file"
-	      shift
-	      ;;
-	    *)
-	      func_file_conv "$2"
-	      set x "$@" -Fe"$file"
-	      shift
-	      ;;
-	  esac
-	  ;;
-	-I*)
-	  func_file_conv "${1#-I}" mingw
-	  set x "$@" -I"$file"
-	  shift
-	  ;;
-	-l*)
-	  lib=${1#-l}
-	  found=no
-	  save_IFS=$IFS
-	  IFS=';'
-	  for dir in $lib_path $LIB
-	  do
-	    IFS=$save_IFS
-	    if $shared && test -f "$dir/$lib.dll.lib"; then
-	      found=yes
-	      set x "$@" "$dir/$lib.dll.lib"
-	      break
-	    fi
-	    if test -f "$dir/$lib.lib"; then
-	      found=yes
-	      set x "$@" "$dir/$lib.lib"
-	      break
-	    fi
-	  done
-	  IFS=$save_IFS
-
-	  test "$found" != yes && set x "$@" "$lib.lib"
-	  shift
-	  ;;
-	-L*)
-	  func_file_conv "${1#-L}"
-	  if test -z "$lib_path"; then
-	    lib_path=$file
-	  else
-	    lib_path="$lib_path;$file"
-	  fi
-	  linker_opts="$linker_opts -LIBPATH:$file"
-	  ;;
-	-static)
-	  shared=false
-	  ;;
-	-Wl,*)
-	  arg=${1#-Wl,}
-	  save_ifs="$IFS"; IFS=','
-	  for flag in $arg; do
-	    IFS="$save_ifs"
-	    linker_opts="$linker_opts $flag"
-	  done
-	  IFS="$save_ifs"
-	  ;;
-	-Xlinker)
-	  eat=1
-	  linker_opts="$linker_opts $2"
-	  ;;
-	-*)
-	  set x "$@" "$1"
-	  shift
-	  ;;
-	*.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
-	  func_file_conv "$1"
-	  set x "$@" -Tp"$file"
-	  shift
-	  ;;
-	*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
-	  func_file_conv "$1" mingw
-	  set x "$@" "$file"
-	  shift
-	  ;;
-	*)
-	  set x "$@" "$1"
-	  shift
-	  ;;
-      esac
-    fi
-    shift
-  done
-  if test -n "$linker_opts"; then
-    linker_opts="-link$linker_opts"
-  fi
-  exec "$@" $linker_opts
-  exit 1
-}
-
-eat=
-
-case $1 in
-  '')
-     echo "$0: No command.  Try \`$0 --help' for more information." 1>&2
-     exit 1;
-     ;;
-  -h | --h*)
-    cat <<\EOF
-Usage: compile [--help] [--version] PROGRAM [ARGS]
-
-Wrapper for compilers which do not understand `-c -o'.
-Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
-arguments, and rename the output as expected.
-
-If you are trying to build a whole package this is not the
-right script to run: please start by reading the file `INSTALL'.
-
-Report bugs to <bug-automake at gnu.org>.
-EOF
-    exit $?
-    ;;
-  -v | --v*)
-    echo "compile $scriptversion"
-    exit $?
-    ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
-    func_cl_wrapper "$@"      # Doesn't return...
-    ;;
-esac
-
-ofile=
-cfile=
-
-for arg
-do
-  if test -n "$eat"; then
-    eat=
-  else
-    case $1 in
-      -o)
-	# configure might choose to run compile as `compile cc -o foo foo.c'.
-	# So we strip `-o arg' only if arg is an object.
-	eat=1
-	case $2 in
-	  *.o | *.obj)
-	    ofile=$2
-	    ;;
-	  *)
-	    set x "$@" -o "$2"
-	    shift
-	    ;;
-	esac
-	;;
-      *.c)
-	cfile=$1
-	set x "$@" "$1"
-	shift
-	;;
-      *)
-	set x "$@" "$1"
-	shift
-	;;
-    esac
-  fi
-  shift
-done
-
-if test -z "$ofile" || test -z "$cfile"; then
-  # If no `-o' option was seen then we might have been invoked from a
-  # pattern rule where we don't need one.  That is ok -- this is a
-  # normal compilation that the losing compiler can handle.  If no
-  # `.c' file was seen then we are probably linking.  That is also
-  # ok.
-  exec "$@"
-fi
-
-# Name of file we expect compiler to create.
-cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
-
-# Create the lock directory.
-# Note: use `[/\\:.-]' here to ensure that we don't use the same name
-# that we are using for the .o file.  Also, base the name on the expected
-# object file name, since that is what matters with a parallel build.
-lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
-while true; do
-  if mkdir "$lockdir" >/dev/null 2>&1; then
-    break
-  fi
-  sleep 1
-done
-# FIXME: race condition here if user kills between mkdir and trap.
-trap "rmdir '$lockdir'; exit 1" 1 2 15
-
-# Run the compile.
-"$@"
-ret=$?
-
-if test -f "$cofile"; then
-  test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
-elif test -f "${cofile}bj"; then
-  test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
-fi
-
-rmdir "$lockdir"
-exit $ret
-
-# Local Variables:
-# mode: shell-script
-# sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "scriptversion="
-# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
-# time-stamp-end: "; # UTC"
-# End:
diff --git a/autotools/depcomp b/autotools/depcomp
deleted file mode 100755
index bd0ac08..0000000
--- a/autotools/depcomp
+++ /dev/null
@@ -1,688 +0,0 @@
-#! /bin/sh
-# depcomp - compile a program generating dependencies as side-effects
-
-scriptversion=2011-12-04.11; # UTC
-
-# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010,
-# 2011 Free Software Foundation, Inc.
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# Originally written by Alexandre Oliva <oliva at dcc.unicamp.br>.
-
-case $1 in
-  '')
-     echo "$0: No command.  Try \`$0 --help' for more information." 1>&2
-     exit 1;
-     ;;
-  -h | --h*)
-    cat <<\EOF
-Usage: depcomp [--help] [--version] PROGRAM [ARGS]
-
-Run PROGRAMS ARGS to compile a file, generating dependencies
-as side-effects.
-
-Environment variables:
-  depmode     Dependency tracking mode.
-  source      Source file read by `PROGRAMS ARGS'.
-  object      Object file output by `PROGRAMS ARGS'.
-  DEPDIR      directory where to store dependencies.
-  depfile     Dependency file to output.
-  tmpdepfile  Temporary file to use when outputting dependencies.
-  libtool     Whether libtool is used (yes/no).
-
-Report bugs to <bug-automake at gnu.org>.
-EOF
-    exit $?
-    ;;
-  -v | --v*)
-    echo "depcomp $scriptversion"
-    exit $?
-    ;;
-esac
-
-if test -z "$depmode" || test -z "$source" || test -z "$object"; then
-  echo "depcomp: Variables source, object and depmode must be set" 1>&2
-  exit 1
-fi
-
-# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
-depfile=${depfile-`echo "$object" |
-  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
-tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
-
-rm -f "$tmpdepfile"
-
-# Some modes work just like other modes, but use different flags.  We
-# parameterize here, but still list the modes in the big case below,
-# to make depend.m4 easier to write.  Note that we *cannot* use a case
-# here, because this file can only contain one case statement.
-if test "$depmode" = hp; then
-  # HP compiler uses -M and no extra arg.
-  gccflag=-M
-  depmode=gcc
-fi
-
-if test "$depmode" = dashXmstdout; then
-   # This is just like dashmstdout with a different argument.
-   dashmflag=-xM
-   depmode=dashmstdout
-fi
-
-cygpath_u="cygpath -u -f -"
-if test "$depmode" = msvcmsys; then
-   # This is just like msvisualcpp but w/o cygpath translation.
-   # Just convert the backslash-escaped backslashes to single forward
-   # slashes to satisfy depend.m4
-   cygpath_u='sed s,\\\\,/,g'
-   depmode=msvisualcpp
-fi
-
-if test "$depmode" = msvc7msys; then
-   # This is just like msvc7 but w/o cygpath translation.
-   # Just convert the backslash-escaped backslashes to single forward
-   # slashes to satisfy depend.m4
-   cygpath_u='sed s,\\\\,/,g'
-   depmode=msvc7
-fi
-
-case "$depmode" in
-gcc3)
-## gcc 3 implements dependency tracking that does exactly what
-## we want.  Yay!  Note: for some reason libtool 1.4 doesn't like
-## it if -MD -MP comes after the -MF stuff.  Hmm.
-## Unfortunately, FreeBSD c89 acceptance of flags depends upon
-## the command line argument order; so add the flags where they
-## appear in depend2.am.  Note that the slowdown incurred here
-## affects only configure: in makefiles, %FASTDEP% shortcuts this.
-  for arg
-  do
-    case $arg in
-    -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
-    *)  set fnord "$@" "$arg" ;;
-    esac
-    shift # fnord
-    shift # $arg
-  done
-  "$@"
-  stat=$?
-  if test $stat -eq 0; then :
-  else
-    rm -f "$tmpdepfile"
-    exit $stat
-  fi
-  mv "$tmpdepfile" "$depfile"
-  ;;
-
-gcc)
-## There are various ways to get dependency output from gcc.  Here's
-## why we pick this rather obscure method:
-## - Don't want to use -MD because we'd like the dependencies to end
-##   up in a subdir.  Having to rename by hand is ugly.
-##   (We might end up doing this anyway to support other compilers.)
-## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
-##   -MM, not -M (despite what the docs say).
-## - Using -M directly means running the compiler twice (even worse
-##   than renaming).
-  if test -z "$gccflag"; then
-    gccflag=-MD,
-  fi
-  "$@" -Wp,"$gccflag$tmpdepfile"
-  stat=$?
-  if test $stat -eq 0; then :
-  else
-    rm -f "$tmpdepfile"
-    exit $stat
-  fi
-  rm -f "$depfile"
-  echo "$object : \\" > "$depfile"
-  alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
-## The second -e expression handles DOS-style file names with drive letters.
-  sed -e 's/^[^:]*: / /' \
-      -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
-## This next piece of magic avoids the `deleted header file' problem.
-## The problem is that when a header file which appears in a .P file
-## is deleted, the dependency causes make to die (because there is
-## typically no way to rebuild the header).  We avoid this by adding
-## dummy dependencies for each header file.  Too bad gcc doesn't do
-## this for us directly.
-  tr ' ' '
-' < "$tmpdepfile" |
-## Some versions of gcc put a space before the `:'.  On the theory
-## that the space means something, we add a space to the output as
-## well.  hp depmode also adds that space, but also prefixes the VPATH
-## to the object.  Take care to not repeat it in the output.
-## Some versions of the HPUX 10.20 sed can't process this invocation
-## correctly.  Breaking it into two sed invocations is a workaround.
-    sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
-      | sed -e 's/$/ :/' >> "$depfile"
-  rm -f "$tmpdepfile"
-  ;;
-
-hp)
-  # This case exists only to let depend.m4 do its work.  It works by
-  # looking at the text of this script.  This case will never be run,
-  # since it is checked for above.
-  exit 1
-  ;;
-
-sgi)
-  if test "$libtool" = yes; then
-    "$@" "-Wp,-MDupdate,$tmpdepfile"
-  else
-    "$@" -MDupdate "$tmpdepfile"
-  fi
-  stat=$?
-  if test $stat -eq 0; then :
-  else
-    rm -f "$tmpdepfile"
-    exit $stat
-  fi
-  rm -f "$depfile"
-
-  if test -f "$tmpdepfile"; then  # yes, the sourcefile depend on other files
-    echo "$object : \\" > "$depfile"
-
-    # Clip off the initial element (the dependent).  Don't try to be
-    # clever and replace this with sed code, as IRIX sed won't handle
-    # lines with more than a fixed number of characters (4096 in
-    # IRIX 6.2 sed, 8192 in IRIX 6.5).  We also remove comment lines;
-    # the IRIX cc adds comments like `#:fec' to the end of the
-    # dependency line.
-    tr ' ' '
-' < "$tmpdepfile" \
-    | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
-    tr '
-' ' ' >> "$depfile"
-    echo >> "$depfile"
-
-    # The second pass generates a dummy entry for each header file.
-    tr ' ' '
-' < "$tmpdepfile" \
-   | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
-   >> "$depfile"
-  else
-    # The sourcefile does not contain any dependencies, so just
-    # store a dummy comment line, to avoid errors with the Makefile
-    # "include basename.Plo" scheme.
-    echo "#dummy" > "$depfile"
-  fi
-  rm -f "$tmpdepfile"
-  ;;
-
-aix)
-  # The C for AIX Compiler uses -M and outputs the dependencies
-  # in a .u file.  In older versions, this file always lives in the
-  # current directory.  Also, the AIX compiler puts `$object:' at the
-  # start of each line; $object doesn't have directory information.
-  # Version 6 uses the directory in both cases.
-  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
-  test "x$dir" = "x$object" && dir=
-  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
-  if test "$libtool" = yes; then
-    tmpdepfile1=$dir$base.u
-    tmpdepfile2=$base.u
-    tmpdepfile3=$dir.libs/$base.u
-    "$@" -Wc,-M
-  else
-    tmpdepfile1=$dir$base.u
-    tmpdepfile2=$dir$base.u
-    tmpdepfile3=$dir$base.u
-    "$@" -M
-  fi
-  stat=$?
-
-  if test $stat -eq 0; then :
-  else
-    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
-    exit $stat
-  fi
-
-  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
-  do
-    test -f "$tmpdepfile" && break
-  done
-  if test -f "$tmpdepfile"; then
-    # Each line is of the form `foo.o: dependent.h'.
-    # Do two passes, one to just change these to
-    # `$object: dependent.h' and one to simply `dependent.h:'.
-    sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
-    # That's a tab and a space in the [].
-    sed -e 's,^.*\.[a-z]*:[	 ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
-  else
-    # The sourcefile does not contain any dependencies, so just
-    # store a dummy comment line, to avoid errors with the Makefile
-    # "include basename.Plo" scheme.
-    echo "#dummy" > "$depfile"
-  fi
-  rm -f "$tmpdepfile"
-  ;;
-
-icc)
-  # Intel's C compiler understands `-MD -MF file'.  However on
-  #    icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
-  # ICC 7.0 will fill foo.d with something like
-  #    foo.o: sub/foo.c
-  #    foo.o: sub/foo.h
-  # which is wrong.  We want:
-  #    sub/foo.o: sub/foo.c
-  #    sub/foo.o: sub/foo.h
-  #    sub/foo.c:
-  #    sub/foo.h:
-  # ICC 7.1 will output
-  #    foo.o: sub/foo.c sub/foo.h
-  # and will wrap long lines using \ :
-  #    foo.o: sub/foo.c ... \
-  #     sub/foo.h ... \
-  #     ...
-
-  "$@" -MD -MF "$tmpdepfile"
-  stat=$?
-  if test $stat -eq 0; then :
-  else
-    rm -f "$tmpdepfile"
-    exit $stat
-  fi
-  rm -f "$depfile"
-  # Each line is of the form `foo.o: dependent.h',
-  # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
-  # Do two passes, one to just change these to
-  # `$object: dependent.h' and one to simply `dependent.h:'.
-  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
-  # Some versions of the HPUX 10.20 sed can't process this invocation
-  # correctly.  Breaking it into two sed invocations is a workaround.
-  sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
-    sed -e 's/$/ :/' >> "$depfile"
-  rm -f "$tmpdepfile"
-  ;;
-
-hp2)
-  # The "hp" stanza above does not work with aCC (C++) and HP's ia64
-  # compilers, which have integrated preprocessors.  The correct option
-  # to use with these is +Maked; it writes dependencies to a file named
-  # 'foo.d', which lands next to the object file, wherever that
-  # happens to be.
-  # Much of this is similar to the tru64 case; see comments there.
-  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
-  test "x$dir" = "x$object" && dir=
-  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
-  if test "$libtool" = yes; then
-    tmpdepfile1=$dir$base.d
-    tmpdepfile2=$dir.libs/$base.d
-    "$@" -Wc,+Maked
-  else
-    tmpdepfile1=$dir$base.d
-    tmpdepfile2=$dir$base.d
-    "$@" +Maked
-  fi
-  stat=$?
-  if test $stat -eq 0; then :
-  else
-     rm -f "$tmpdepfile1" "$tmpdepfile2"
-     exit $stat
-  fi
-
-  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
-  do
-    test -f "$tmpdepfile" && break
-  done
-  if test -f "$tmpdepfile"; then
-    sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
-    # Add `dependent.h:' lines.
-    sed -ne '2,${
-	       s/^ *//
-	       s/ \\*$//
-	       s/$/:/
-	       p
-	     }' "$tmpdepfile" >> "$depfile"
-  else
-    echo "#dummy" > "$depfile"
-  fi
-  rm -f "$tmpdepfile" "$tmpdepfile2"
-  ;;
-
-tru64)
-   # The Tru64 compiler uses -MD to generate dependencies as a side
-   # effect.  `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
-   # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
-   # dependencies in `foo.d' instead, so we check for that too.
-   # Subdirectories are respected.
-   dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
-   test "x$dir" = "x$object" && dir=
-   base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
-
-   if test "$libtool" = yes; then
-      # With Tru64 cc, shared objects can also be used to make a
-      # static library.  This mechanism is used in libtool 1.4 series to
-      # handle both shared and static libraries in a single compilation.
-      # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
-      #
-      # With libtool 1.5 this exception was removed, and libtool now
-      # generates 2 separate objects for the 2 libraries.  These two
-      # compilations output dependencies in $dir.libs/$base.o.d and
-      # in $dir$base.o.d.  We have to check for both files, because
-      # one of the two compilations can be disabled.  We should prefer
-      # $dir$base.o.d over $dir.libs/$base.o.d because the latter is
-      # automatically cleaned when .libs/ is deleted, while ignoring
-      # the former would cause a distcleancheck panic.
-      tmpdepfile1=$dir.libs/$base.lo.d   # libtool 1.4
-      tmpdepfile2=$dir$base.o.d          # libtool 1.5
-      tmpdepfile3=$dir.libs/$base.o.d    # libtool 1.5
-      tmpdepfile4=$dir.libs/$base.d      # Compaq CCC V6.2-504
-      "$@" -Wc,-MD
-   else
-      tmpdepfile1=$dir$base.o.d
-      tmpdepfile2=$dir$base.d
-      tmpdepfile3=$dir$base.d
-      tmpdepfile4=$dir$base.d
-      "$@" -MD
-   fi
-
-   stat=$?
-   if test $stat -eq 0; then :
-   else
-      rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
-      exit $stat
-   fi
-
-   for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
-   do
-     test -f "$tmpdepfile" && break
-   done
-   if test -f "$tmpdepfile"; then
-      sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
-      # That's a tab and a space in the [].
-      sed -e 's,^.*\.[a-z]*:[	 ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
-   else
-      echo "#dummy" > "$depfile"
-   fi
-   rm -f "$tmpdepfile"
-   ;;
-
-msvc7)
-  if test "$libtool" = yes; then
-    showIncludes=-Wc,-showIncludes
-  else
-    showIncludes=-showIncludes
-  fi
-  "$@" $showIncludes > "$tmpdepfile"
-  stat=$?
-  grep -v '^Note: including file: ' "$tmpdepfile"
-  if test "$stat" = 0; then :
-  else
-    rm -f "$tmpdepfile"
-    exit $stat
-  fi
-  rm -f "$depfile"
-  echo "$object : \\" > "$depfile"
-  # The first sed program below extracts the file names and escapes
-  # backslashes for cygpath.  The second sed program outputs the file
-  # name when reading, but also accumulates all include files in the
-  # hold buffer in order to output them again at the end.  This only
-  # works with sed implementations that can handle large buffers.
-  sed < "$tmpdepfile" -n '
-/^Note: including file:  *\(.*\)/ {
-  s//\1/
-  s/\\/\\\\/g
-  p
-}' | $cygpath_u | sort -u | sed -n '
-s/ /\\ /g
-s/\(.*\)/	\1 \\/p
-s/.\(.*\) \\/\1:/
-H
-$ {
-  s/.*/	/
-  G
-  p
-}' >> "$depfile"
-  rm -f "$tmpdepfile"
-  ;;
-
-msvc7msys)
-  # This case exists only to let depend.m4 do its work.  It works by
-  # looking at the text of this script.  This case will never be run,
-  # since it is checked for above.
-  exit 1
-  ;;
-
-#nosideeffect)
-  # This comment above is used by automake to tell side-effect
-  # dependency tracking mechanisms from slower ones.
-
-dashmstdout)
-  # Important note: in order to support this mode, a compiler *must*
-  # always write the preprocessed file to stdout, regardless of -o.
-  "$@" || exit $?
-
-  # Remove the call to Libtool.
-  if test "$libtool" = yes; then
-    while test "X$1" != 'X--mode=compile'; do
-      shift
-    done
-    shift
-  fi
-
-  # Remove `-o $object'.
-  IFS=" "
-  for arg
-  do
-    case $arg in
-    -o)
-      shift
-      ;;
-    $object)
-      shift
-      ;;
-    *)
-      set fnord "$@" "$arg"
-      shift # fnord
-      shift # $arg
-      ;;
-    esac
-  done
-
-  test -z "$dashmflag" && dashmflag=-M
-  # Require at least two characters before searching for `:'
-  # in the target name.  This is to cope with DOS-style filenames:
-  # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.
-  "$@" $dashmflag |
-    sed 's:^[  ]*[^: ][^:][^:]*\:[    ]*:'"$object"'\: :' > "$tmpdepfile"
-  rm -f "$depfile"
-  cat < "$tmpdepfile" > "$depfile"
-  tr ' ' '
-' < "$tmpdepfile" | \
-## Some versions of the HPUX 10.20 sed can't process this invocation
-## correctly.  Breaking it into two sed invocations is a workaround.
-    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
-  rm -f "$tmpdepfile"
-  ;;
-
-dashXmstdout)
-  # This case only exists to satisfy depend.m4.  It is never actually
-  # run, as this mode is specially recognized in the preamble.
-  exit 1
-  ;;
-
-makedepend)
-  "$@" || exit $?
-  # Remove any Libtool call
-  if test "$libtool" = yes; then
-    while test "X$1" != 'X--mode=compile'; do
-      shift
-    done
-    shift
-  fi
-  # X makedepend
-  shift
-  cleared=no eat=no
-  for arg
-  do
-    case $cleared in
-    no)
-      set ""; shift
-      cleared=yes ;;
-    esac
-    if test $eat = yes; then
-      eat=no
-      continue
-    fi
-    case "$arg" in
-    -D*|-I*)
-      set fnord "$@" "$arg"; shift ;;
-    # Strip any option that makedepend may not understand.  Remove
-    # the object too, otherwise makedepend will parse it as a source file.
-    -arch)
-      eat=yes ;;
-    -*|$object)
-      ;;
-    *)
-      set fnord "$@" "$arg"; shift ;;
-    esac
-  done
-  obj_suffix=`echo "$object" | sed 's/^.*\././'`
-  touch "$tmpdepfile"
-  ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
-  rm -f "$depfile"
-  # makedepend may prepend the VPATH from the source file name to the object.
-  # No need to regex-escape $object, excess matching of '.' is harmless.
-  sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
-  sed '1,2d' "$tmpdepfile" | tr ' ' '
-' | \
-## Some versions of the HPUX 10.20 sed can't process this invocation
-## correctly.  Breaking it into two sed invocations is a workaround.
-    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
-  rm -f "$tmpdepfile" "$tmpdepfile".bak
-  ;;
-
-cpp)
-  # Important note: in order to support this mode, a compiler *must*
-  # always write the preprocessed file to stdout.
-  "$@" || exit $?
-
-  # Remove the call to Libtool.
-  if test "$libtool" = yes; then
-    while test "X$1" != 'X--mode=compile'; do
-      shift
-    done
-    shift
-  fi
-
-  # Remove `-o $object'.
-  IFS=" "
-  for arg
-  do
-    case $arg in
-    -o)
-      shift
-      ;;
-    $object)
-      shift
-      ;;
-    *)
-      set fnord "$@" "$arg"
-      shift # fnord
-      shift # $arg
-      ;;
-    esac
-  done
-
-  "$@" -E |
-    sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
-       -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
-    sed '$ s: \\$::' > "$tmpdepfile"
-  rm -f "$depfile"
-  echo "$object : \\" > "$depfile"
-  cat < "$tmpdepfile" >> "$depfile"
-  sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
-  rm -f "$tmpdepfile"
-  ;;
-
-msvisualcpp)
-  # Important note: in order to support this mode, a compiler *must*
-  # always write the preprocessed file to stdout.
-  "$@" || exit $?
-
-  # Remove the call to Libtool.
-  if test "$libtool" = yes; then
-    while test "X$1" != 'X--mode=compile'; do
-      shift
-    done
-    shift
-  fi
-
-  IFS=" "
-  for arg
-  do
-    case "$arg" in
-    -o)
-      shift
-      ;;
-    $object)
-      shift
-      ;;
-    "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
-	set fnord "$@"
-	shift
-	shift
-	;;
-    *)
-	set fnord "$@" "$arg"
-	shift
-	shift
-	;;
-    esac
-  done
-  "$@" -E 2>/dev/null |
-  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
-  rm -f "$depfile"
-  echo "$object : \\" > "$depfile"
-  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
-  echo "	" >> "$depfile"
-  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
-  rm -f "$tmpdepfile"
-  ;;
-
-msvcmsys)
-  # This case exists only to let depend.m4 do its work.  It works by
-  # looking at the text of this script.  This case will never be run,
-  # since it is checked for above.
-  exit 1
-  ;;
-
-none)
-  exec "$@"
-  ;;
-
-*)
-  echo "Unknown depmode $depmode" 1>&2
-  exit 1
-  ;;
-esac
-
-exit 0
-
-# Local Variables:
-# mode: shell-script
-# sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "scriptversion="
-# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
-# time-stamp-end: "; # UTC"
-# End:
diff --git a/autotools/install-sh b/autotools/install-sh
deleted file mode 100755
index a9244eb..0000000
--- a/autotools/install-sh
+++ /dev/null
@@ -1,527 +0,0 @@
-#!/bin/sh
-# install - install a program, script, or datafile
-
-scriptversion=2011-01-19.21; # UTC
-
-# This originates from X11R5 (mit/util/scripts/install.sh), which was
-# later released in X11R6 (xc/config/util/install.sh) with the
-# following copyright and license.
-#
-# Copyright (C) 1994 X Consortium
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to
-# deal in the Software without restriction, including without limitation the
-# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-# sell copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included in
-# all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
-# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
-# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-#
-# Except as contained in this notice, the name of the X Consortium shall not
-# be used in advertising or otherwise to promote the sale, use or other deal-
-# ings in this Software without prior written authorization from the X Consor-
-# tium.
-#
-#
-# FSF changes to this file are in the public domain.
-#
-# Calling this script install-sh is preferred over install.sh, to prevent
-# `make' implicit rules from creating a file called install from it
-# when there is no Makefile.
-#
-# This script is compatible with the BSD install script, but was written
-# from scratch.
-
-nl='
-'
-IFS=" ""	$nl"
-
-# set DOITPROG to echo to test this script
-
-# Don't use :- since 4.3BSD and earlier shells don't like it.
-doit=${DOITPROG-}
-if test -z "$doit"; then
-  doit_exec=exec
-else
-  doit_exec=$doit
-fi
-
-# Put in absolute file names if you don't have them in your path;
-# or use environment vars.
-
-chgrpprog=${CHGRPPROG-chgrp}
-chmodprog=${CHMODPROG-chmod}
-chownprog=${CHOWNPROG-chown}
-cmpprog=${CMPPROG-cmp}
-cpprog=${CPPROG-cp}
-mkdirprog=${MKDIRPROG-mkdir}
-mvprog=${MVPROG-mv}
-rmprog=${RMPROG-rm}
-stripprog=${STRIPPROG-strip}
-
-posix_glob='?'
-initialize_posix_glob='
-  test "$posix_glob" != "?" || {
-    if (set -f) 2>/dev/null; then
-      posix_glob=
-    else
-      posix_glob=:
-    fi
-  }
-'
-
-posix_mkdir=
-
-# Desired mode of installed file.
-mode=0755
-
-chgrpcmd=
-chmodcmd=$chmodprog
-chowncmd=
-mvcmd=$mvprog
-rmcmd="$rmprog -f"
-stripcmd=
-
-src=
-dst=
-dir_arg=
-dst_arg=
-
-copy_on_change=false
-no_target_directory=
-
-usage="\
-Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
-   or: $0 [OPTION]... SRCFILES... DIRECTORY
-   or: $0 [OPTION]... -t DIRECTORY SRCFILES...
-   or: $0 [OPTION]... -d DIRECTORIES...
-
-In the 1st form, copy SRCFILE to DSTFILE.
-In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
-In the 4th, create DIRECTORIES.
-
-Options:
-     --help     display this help and exit.
-     --version  display version info and exit.
-
-  -c            (ignored)
-  -C            install only if different (preserve the last data modification time)
-  -d            create directories instead of installing files.
-  -g GROUP      $chgrpprog installed files to GROUP.
-  -m MODE       $chmodprog installed files to MODE.
-  -o USER       $chownprog installed files to USER.
-  -s            $stripprog installed files.
-  -t DIRECTORY  install into DIRECTORY.
-  -T            report an error if DSTFILE is a directory.
-
-Environment variables override the default commands:
-  CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
-  RMPROG STRIPPROG
-"
-
-while test $# -ne 0; do
-  case $1 in
-    -c) ;;
-
-    -C) copy_on_change=true;;
-
-    -d) dir_arg=true;;
-
-    -g) chgrpcmd="$chgrpprog $2"
-	shift;;
-
-    --help) echo "$usage"; exit $?;;
-
-    -m) mode=$2
-	case $mode in
-	  *' '* | *'	'* | *'
-'*	  | *'*'* | *'?'* | *'['*)
-	    echo "$0: invalid mode: $mode" >&2
-	    exit 1;;
-	esac
-	shift;;
-
-    -o) chowncmd="$chownprog $2"
-	shift;;
-
-    -s) stripcmd=$stripprog;;
-
-    -t) dst_arg=$2
-	# Protect names problematic for `test' and other utilities.
-	case $dst_arg in
-	  -* | [=\(\)!]) dst_arg=./$dst_arg;;
-	esac
-	shift;;
-
-    -T) no_target_directory=true;;
-
-    --version) echo "$0 $scriptversion"; exit $?;;
-
-    --)	shift
-	break;;
-
-    -*)	echo "$0: invalid option: $1" >&2
-	exit 1;;
-
-    *)  break;;
-  esac
-  shift
-done
-
-if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
-  # When -d is used, all remaining arguments are directories to create.
-  # When -t is used, the destination is already specified.
-  # Otherwise, the last argument is the destination.  Remove it from $@.
-  for arg
-  do
-    if test -n "$dst_arg"; then
-      # $@ is not empty: it contains at least $arg.
-      set fnord "$@" "$dst_arg"
-      shift # fnord
-    fi
-    shift # arg
-    dst_arg=$arg
-    # Protect names problematic for `test' and other utilities.
-    case $dst_arg in
-      -* | [=\(\)!]) dst_arg=./$dst_arg;;
-    esac
-  done
-fi
-
-if test $# -eq 0; then
-  if test -z "$dir_arg"; then
-    echo "$0: no input file specified." >&2
-    exit 1
-  fi
-  # It's OK to call `install-sh -d' without argument.
-  # This can happen when creating conditional directories.
-  exit 0
-fi
-
-if test -z "$dir_arg"; then
-  do_exit='(exit $ret); exit $ret'
-  trap "ret=129; $do_exit" 1
-  trap "ret=130; $do_exit" 2
-  trap "ret=141; $do_exit" 13
-  trap "ret=143; $do_exit" 15
-
-  # Set umask so as not to create temps with too-generous modes.
-  # However, 'strip' requires both read and write access to temps.
-  case $mode in
-    # Optimize common cases.
-    *644) cp_umask=133;;
-    *755) cp_umask=22;;
-
-    *[0-7])
-      if test -z "$stripcmd"; then
-	u_plus_rw=
-      else
-	u_plus_rw='% 200'
-      fi
-      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
-    *)
-      if test -z "$stripcmd"; then
-	u_plus_rw=
-      else
-	u_plus_rw=,u+rw
-      fi
-      cp_umask=$mode$u_plus_rw;;
-  esac
-fi
-
-for src
-do
-  # Protect names problematic for `test' and other utilities.
-  case $src in
-    -* | [=\(\)!]) src=./$src;;
-  esac
-
-  if test -n "$dir_arg"; then
-    dst=$src
-    dstdir=$dst
-    test -d "$dstdir"
-    dstdir_status=$?
-  else
-
-    # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
-    # might cause directories to be created, which would be especially bad
-    # if $src (and thus $dsttmp) contains '*'.
-    if test ! -f "$src" && test ! -d "$src"; then
-      echo "$0: $src does not exist." >&2
-      exit 1
-    fi
-
-    if test -z "$dst_arg"; then
-      echo "$0: no destination specified." >&2
-      exit 1
-    fi
-    dst=$dst_arg
-
-    # If destination is a directory, append the input filename; won't work
-    # if double slashes aren't ignored.
-    if test -d "$dst"; then
-      if test -n "$no_target_directory"; then
-	echo "$0: $dst_arg: Is a directory" >&2
-	exit 1
-      fi
-      dstdir=$dst
-      dst=$dstdir/`basename "$src"`
-      dstdir_status=0
-    else
-      # Prefer dirname, but fall back on a substitute if dirname fails.
-      dstdir=`
-	(dirname "$dst") 2>/dev/null ||
-	expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-	     X"$dst" : 'X\(//\)[^/]' \| \
-	     X"$dst" : 'X\(//\)$' \| \
-	     X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
-	echo X"$dst" |
-	    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-		   s//\1/
-		   q
-		 }
-		 /^X\(\/\/\)[^/].*/{
-		   s//\1/
-		   q
-		 }
-		 /^X\(\/\/\)$/{
-		   s//\1/
-		   q
-		 }
-		 /^X\(\/\).*/{
-		   s//\1/
-		   q
-		 }
-		 s/.*/./; q'
-      `
-
-      test -d "$dstdir"
-      dstdir_status=$?
-    fi
-  fi
-
-  obsolete_mkdir_used=false
-
-  if test $dstdir_status != 0; then
-    case $posix_mkdir in
-      '')
-	# Create intermediate dirs using mode 755 as modified by the umask.
-	# This is like FreeBSD 'install' as of 1997-10-28.
-	umask=`umask`
-	case $stripcmd.$umask in
-	  # Optimize common cases.
-	  *[2367][2367]) mkdir_umask=$umask;;
-	  .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
-
-	  *[0-7])
-	    mkdir_umask=`expr $umask + 22 \
-	      - $umask % 100 % 40 + $umask % 20 \
-	      - $umask % 10 % 4 + $umask % 2
-	    `;;
-	  *) mkdir_umask=$umask,go-w;;
-	esac
-
-	# With -d, create the new directory with the user-specified mode.
-	# Otherwise, rely on $mkdir_umask.
-	if test -n "$dir_arg"; then
-	  mkdir_mode=-m$mode
-	else
-	  mkdir_mode=
-	fi
-
-	posix_mkdir=false
-	case $umask in
-	  *[123567][0-7][0-7])
-	    # POSIX mkdir -p sets u+wx bits regardless of umask, which
-	    # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
-	    ;;
-	  *)
-	    tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
-	    trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
-
-	    if (umask $mkdir_umask &&
-		exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
-	    then
-	      if test -z "$dir_arg" || {
-		   # Check for POSIX incompatibilities with -m.
-		   # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
-		   # other-writeable bit of parent directory when it shouldn't.
-		   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
-		   ls_ld_tmpdir=`ls -ld "$tmpdir"`
-		   case $ls_ld_tmpdir in
-		     d????-?r-*) different_mode=700;;
-		     d????-?--*) different_mode=755;;
-		     *) false;;
-		   esac &&
-		   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
-		     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
-		     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
-		   }
-		 }
-	      then posix_mkdir=:
-	      fi
-	      rmdir "$tmpdir/d" "$tmpdir"
-	    else
-	      # Remove any dirs left behind by ancient mkdir implementations.
-	      rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
-	    fi
-	    trap '' 0;;
-	esac;;
-    esac
-
-    if
-      $posix_mkdir && (
-	umask $mkdir_umask &&
-	$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
-      )
-    then :
-    else
-
-      # The umask is ridiculous, or mkdir does not conform to POSIX,
-      # or it failed possibly due to a race condition.  Create the
-      # directory the slow way, step by step, checking for races as we go.
-
-      case $dstdir in
-	/*) prefix='/';;
-	[-=\(\)!]*) prefix='./';;
-	*)  prefix='';;
-      esac
-
-      eval "$initialize_posix_glob"
-
-      oIFS=$IFS
-      IFS=/
-      $posix_glob set -f
-      set fnord $dstdir
-      shift
-      $posix_glob set +f
-      IFS=$oIFS
-
-      prefixes=
-
-      for d
-      do
-	test X"$d" = X && continue
-
-	prefix=$prefix$d
-	if test -d "$prefix"; then
-	  prefixes=
-	else
-	  if $posix_mkdir; then
-	    (umask=$mkdir_umask &&
-	     $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
-	    # Don't fail if two instances are running concurrently.
-	    test -d "$prefix" || exit 1
-	  else
-	    case $prefix in
-	      *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
-	      *) qprefix=$prefix;;
-	    esac
-	    prefixes="$prefixes '$qprefix'"
-	  fi
-	fi
-	prefix=$prefix/
-      done
-
-      if test -n "$prefixes"; then
-	# Don't fail if two instances are running concurrently.
-	(umask $mkdir_umask &&
-	 eval "\$doit_exec \$mkdirprog $prefixes") ||
-	  test -d "$dstdir" || exit 1
-	obsolete_mkdir_used=true
-      fi
-    fi
-  fi
-
-  if test -n "$dir_arg"; then
-    { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
-    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
-    { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
-      test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
-  else
-
-    # Make a couple of temp file names in the proper directory.
-    dsttmp=$dstdir/_inst.$$_
-    rmtmp=$dstdir/_rm.$$_
-
-    # Trap to clean up those temp files at exit.
-    trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
-
-    # Copy the file name to the temp name.
-    (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
-
-    # and set any options; do chmod last to preserve setuid bits.
-    #
-    # If any of these fail, we abort the whole thing.  If we want to
-    # ignore errors from any of these, just make sure not to ignore
-    # errors from the above "$doit $cpprog $src $dsttmp" command.
-    #
-    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
-    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
-    { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
-    { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
-
-    # If -C, don't bother to copy if it wouldn't change the file.
-    if $copy_on_change &&
-       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
-       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
-
-       eval "$initialize_posix_glob" &&
-       $posix_glob set -f &&
-       set X $old && old=:$2:$4:$5:$6 &&
-       set X $new && new=:$2:$4:$5:$6 &&
-       $posix_glob set +f &&
-
-       test "$old" = "$new" &&
-       $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
-    then
-      rm -f "$dsttmp"
-    else
-      # Rename the file to the real destination.
-      $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
-
-      # The rename failed, perhaps because mv can't rename something else
-      # to itself, or perhaps because mv is so ancient that it does not
-      # support -f.
-      {
-	# Now remove or move aside any old file at destination location.
-	# We try this two ways since rm can't unlink itself on some
-	# systems and the destination file might be busy for other
-	# reasons.  In this case, the final cleanup might fail but the new
-	# file should still install successfully.
-	{
-	  test ! -f "$dst" ||
-	  $doit $rmcmd -f "$dst" 2>/dev/null ||
-	  { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
-	    { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
-	  } ||
-	  { echo "$0: cannot unlink or rename $dst" >&2
-	    (exit 1); exit 1
-	  }
-	} &&
-
-	# Now rename the file to the real destination.
-	$doit $mvcmd "$dsttmp" "$dst"
-      }
-    fi || exit 1
-
-    trap '' 0
-  fi
-done
-
-# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "scriptversion="
-# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
-# time-stamp-end: "; # UTC"
-# End:
diff --git a/modules/stream_filter/dash/Makefile.in b/modules/stream_filter/dash/Makefile.in
deleted file mode 100644
index f144ca6..0000000
--- a/modules/stream_filter/dash/Makefile.in
+++ /dev/null
@@ -1,1646 +0,0 @@
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
-# @configure_input@
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-# Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
- at SET_MAKE@
-
-# modules/stream_filter/dash/Makefile.am automatically generated from modules/stream_filter/dash/Modules.am by modules/genmf
-# DO NOT EDIT THIS FILE DIRECTLY! See Modules.am instead.
-
-# Common code for VLC modules/.../Makefile.am
-#
-# Copyright (C) 2005-2007 the VideoLAN team
-# Copyright (C) 2005-2008 Rémi Denis-Courmont
-#
-# Authors: Sam Hocevar <sam at zoy.org>
-
-VPATH = @srcdir@
-pkgdatadir = $(datadir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
-pkglibdir = $(libdir)/@PACKAGE@
-pkglibexecdir = $(libexecdir)/@PACKAGE@
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = @build@
-host_triplet = @host@
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
-	$(srcdir)/Modules.am $(top_srcdir)/modules/common.am
- at HAVE_DYNAMIC_PLUGINS_TRUE@am__append_1 = -D__PLUGIN__
-subdir = modules/stream_filter/dash
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/flags.m4 \
-	$(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/iconv.m4 \
-	$(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \
-	$(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
-	$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
-	$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
-	$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
-	$(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
-	$(top_srcdir)/m4/vlc.m4 $(top_srcdir)/m4/with_pkg.m4 \
-	$(top_srcdir)/configure.ac
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
-	$(ACLOCAL_M4)
-mkinstalldirs = $(install_sh) -d
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-CONFIG_CLEAN_VPATH_FILES =
-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-am__vpath_adj = case $$p in \
-    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-    *) f=$$p;; \
-  esac;
-am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-am__install_max = 40
-am__nobase_strip_setup = \
-  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-am__nobase_strip = \
-  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-am__nobase_list = $(am__nobase_strip_setup); \
-  for p in $$list; do echo "$$p $$p"; done | \
-  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-    if (++n[$$2] == $(am__install_max)) \
-      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-    END { for (dir in files) print dir, files[dir] }'
-am__base_list = \
-  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
-am__uninstall_files_from_dir = { \
-  test -z "$$files" \
-    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
-    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
-         $(am__cd) "$$dir" && rm -f $$files; }; \
-  }
-am__installdirs = "$(DESTDIR)$(libvlcdir)"
-LTLIBRARIES = $(libvlc_LTLIBRARIES)
-am__DEPENDENCIES_1 =
-am__DEPENDENCIES_2 = $(LTLIBVLCCORE) \
-	$(top_builddir)/compat/libcompat.la $(am__DEPENDENCIES_1)
-am__objects_1 =
-am__objects_2 =  \
-	libstream_filter_dash_plugin_la-AbstractAdaptationLogic.lo \
-	libstream_filter_dash_plugin_la-AdaptationLogicFactory.lo \
-	libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.lo \
-	libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.lo \
-	libstream_filter_dash_plugin_la-Chunk.lo \
-	libstream_filter_dash_plugin_la-HTTPConnection.lo \
-	libstream_filter_dash_plugin_la-HTTPConnectionManager.lo \
-	libstream_filter_dash_plugin_la-BasicCMManager.lo \
-	libstream_filter_dash_plugin_la-BasicCMParser.lo \
-	libstream_filter_dash_plugin_la-CommonAttributesElements.lo \
-	libstream_filter_dash_plugin_la-ContentDescription.lo \
-	libstream_filter_dash_plugin_la-Group.lo \
-	libstream_filter_dash_plugin_la-MPD.lo \
-	libstream_filter_dash_plugin_la-MPDManagerFactory.lo \
-	libstream_filter_dash_plugin_la-Period.lo \
-	libstream_filter_dash_plugin_la-ProgramInformation.lo \
-	libstream_filter_dash_plugin_la-Representation.lo \
-	libstream_filter_dash_plugin_la-Segment.lo \
-	libstream_filter_dash_plugin_la-SegmentInfo.lo \
-	libstream_filter_dash_plugin_la-SegmentInfoCommon.lo \
-	libstream_filter_dash_plugin_la-SegmentInfoDefault.lo \
-	libstream_filter_dash_plugin_la-SegmentTemplate.lo \
-	libstream_filter_dash_plugin_la-SegmentTimeline.lo \
-	libstream_filter_dash_plugin_la-TrickModeType.lo \
-	libstream_filter_dash_plugin_la-DOMHelper.lo \
-	libstream_filter_dash_plugin_la-DOMParser.lo \
-	libstream_filter_dash_plugin_la-Node.lo \
-	libstream_filter_dash_plugin_la-dash.lo \
-	libstream_filter_dash_plugin_la-DASHManager.lo \
-	$(am__objects_1)
-am_libstream_filter_dash_plugin_la_OBJECTS = $(am__objects_2)
-nodist_libstream_filter_dash_plugin_la_OBJECTS =
-libstream_filter_dash_plugin_la_OBJECTS =  \
-	$(am_libstream_filter_dash_plugin_la_OBJECTS) \
-	$(nodist_libstream_filter_dash_plugin_la_OBJECTS)
-AM_V_lt = $(am__v_lt_ at AM_V@)
-am__v_lt_ = $(am__v_lt_ at AM_DEFAULT_V@)
-am__v_lt_0 = --silent
-libstream_filter_dash_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
-	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
-	$(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) \
-	$(libstream_filter_dash_plugin_la_LDFLAGS) $(LDFLAGS) -o $@
-DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
-depcomp = $(SHELL) $(top_srcdir)/autotools/depcomp
-am__depfiles_maybe = depfiles
-am__mv = mv -f
-CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
-LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
-	$(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-	$(AM_CXXFLAGS) $(CXXFLAGS)
-AM_V_CXX = $(am__v_CXX_ at AM_V@)
-am__v_CXX_ = $(am__v_CXX_ at AM_DEFAULT_V@)
-am__v_CXX_0 = @echo "  CXX   " $@;
-AM_V_at = $(am__v_at_ at AM_V@)
-am__v_at_ = $(am__v_at_ at AM_DEFAULT_V@)
-am__v_at_0 = @
-CXXLD = $(CXX)
-CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
-	$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
-	$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
-AM_V_CXXLD = $(am__v_CXXLD_ at AM_V@)
-am__v_CXXLD_ = $(am__v_CXXLD_ at AM_DEFAULT_V@)
-am__v_CXXLD_0 = @echo "  CXXLD " $@;
-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
-	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-	$(AM_CFLAGS) $(CFLAGS)
-AM_V_CC = $(am__v_CC_ at AM_V@)
-am__v_CC_ = $(am__v_CC_ at AM_DEFAULT_V@)
-am__v_CC_0 = @echo "  CC    " $@;
-CCLD = $(CC)
-LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-AM_V_CCLD = $(am__v_CCLD_ at AM_V@)
-am__v_CCLD_ = $(am__v_CCLD_ at AM_DEFAULT_V@)
-am__v_CCLD_0 = @echo "  CCLD  " $@;
-AM_V_GEN = $(am__v_GEN_ at AM_V@)
-am__v_GEN_ = $(am__v_GEN_ at AM_DEFAULT_V@)
-am__v_GEN_0 = @echo "  GEN   " $@;
-SOURCES = $(libstream_filter_dash_plugin_la_SOURCES) \
-	$(nodist_libstream_filter_dash_plugin_la_SOURCES)
-DIST_SOURCES = $(libstream_filter_dash_plugin_la_SOURCES)
-ETAGS = etags
-CTAGS = ctags
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = @ACLOCAL@
-ALIASES = @ALIASES@
-ALSA_CFLAGS = @ALSA_CFLAGS@
-ALSA_LIBS = @ALSA_LIBS@
-AMTAR = @AMTAR@
-AM_CPPFLAGS = -DMODULE_NAME=$(MODULE_NAME) \
-	-DMODULE_NAME_IS_$(MODULE_NAME) \
-	-DMODULE_STRING=\"$(MODULE_NAME)\" $(am__append_1)
-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
-AR = @AR@
-ARCH = @ARCH@
-AS = @AS@
-ASM = @ASM@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AVCODEC_CFLAGS = @AVCODEC_CFLAGS@
-AVCODEC_LIBS = @AVCODEC_LIBS@
-AVFORMAT_CFLAGS = @AVFORMAT_CFLAGS@
-AVFORMAT_LIBS = @AVFORMAT_LIBS@
-AWK = @AWK@
-BLURAY_CFLAGS = @BLURAY_CFLAGS@
-BLURAY_LIBS = @BLURAY_LIBS@
-BONJOUR_CFLAGS = @BONJOUR_CFLAGS@
-BONJOUR_LIBS = @BONJOUR_LIBS@
-CACA_CFLAGS = @CACA_CFLAGS@
-CACA_LIBS = @CACA_LIBS@
-CC = @CC@
-CCAS = @CCAS@
-CCASDEPMODE = @CCASDEPMODE@
-CCASFLAGS = @CCASFLAGS@
-CCDEPMODE = @CCDEPMODE@
-CFLAGS = @CFLAGS@
-CFLAGS_access_avio = @CFLAGS_access_avio@
-CFLAGS_access_dv = @CFLAGS_access_dv@
-CFLAGS_access_gnomevfs = @CFLAGS_access_gnomevfs@
-CFLAGS_access_http = @CFLAGS_access_http@
-CFLAGS_access_jack = @CFLAGS_access_jack@
-CFLAGS_access_mtp = @CFLAGS_access_mtp@
-CFLAGS_access_output_shout = @CFLAGS_access_output_shout@
-CFLAGS_avcodec = @CFLAGS_avcodec@
-CFLAGS_avformat = @CFLAGS_avformat@
-CFLAGS_bonjour = @CFLAGS_bonjour@
-CFLAGS_caca = @CFLAGS_caca@
-CFLAGS_cdda = @CFLAGS_cdda@
-CFLAGS_dbus = @CFLAGS_dbus@
-CFLAGS_dc1394 = @CFLAGS_dc1394@
-CFLAGS_deinterlace = @CFLAGS_deinterlace@
-CFLAGS_dirac = @CFLAGS_dirac@
-CFLAGS_dtstofloat32 = @CFLAGS_dtstofloat32@
-CFLAGS_dvdnav = @CFLAGS_dvdnav@
-CFLAGS_dvdread = @CFLAGS_dvdread@
-CFLAGS_flac = @CFLAGS_flac@
-CFLAGS_fluidsynth = @CFLAGS_fluidsynth@
-CFLAGS_globalhotkeys = @CFLAGS_globalhotkeys@
-CFLAGS_goom = @CFLAGS_goom@
-CFLAGS_hildon = @CFLAGS_hildon@
-CFLAGS_i420_yuy2_altivec = @CFLAGS_i420_yuy2_altivec@
-CFLAGS_inhibit = @CFLAGS_inhibit@
-CFLAGS_jack = @CFLAGS_jack@
-CFLAGS_kate = @CFLAGS_kate@
-CFLAGS_libass = @CFLAGS_libass@
-CFLAGS_libbluray = @CFLAGS_libbluray@
-CFLAGS_libmpeg2 = @CFLAGS_libmpeg2@
-CFLAGS_libvlccore = @CFLAGS_libvlccore@
-CFLAGS_linsys_sdi = @CFLAGS_linsys_sdi@
-CFLAGS_lua = @CFLAGS_lua@
-CFLAGS_memcpyaltivec = @CFLAGS_memcpyaltivec@
-CFLAGS_motion = @CFLAGS_motion@
-CFLAGS_mtp = @CFLAGS_mtp@
-CFLAGS_mux_ogg = @CFLAGS_mux_ogg@
-CFLAGS_notify = @CFLAGS_notify@
-CFLAGS_ogg = @CFLAGS_ogg@
-CFLAGS_opencv_example = @CFLAGS_opencv_example@
-CFLAGS_opencv_wrapper = @CFLAGS_opencv_wrapper@
-CFLAGS_panoramix = @CFLAGS_panoramix@
-CFLAGS_portaudio = @CFLAGS_portaudio@
-CFLAGS_postproc = @CFLAGS_postproc@
-CFLAGS_samplerate = @CFLAGS_samplerate@
-CFLAGS_schroedinger = @CFLAGS_schroedinger@
-CFLAGS_sdl_image = @CFLAGS_sdl_image@
-CFLAGS_sid = @CFLAGS_sid@
-CFLAGS_speex = @CFLAGS_speex@
-CFLAGS_sqlite = @CFLAGS_sqlite@
-CFLAGS_stream_out_switcher = @CFLAGS_stream_out_switcher@
-CFLAGS_svg = @CFLAGS_svg@
-CFLAGS_swscale = @CFLAGS_swscale@
-CFLAGS_telepathy = @CFLAGS_telepathy@
-CFLAGS_theora = @CFLAGS_theora@
-CFLAGS_twolame = @CFLAGS_twolame@
-CFLAGS_udev = @CFLAGS_udev@
-CFLAGS_upnp = @CFLAGS_upnp@
-CFLAGS_vcdx = @CFLAGS_vcdx@
-CFLAGS_vorbis = @CFLAGS_vorbis@
-CFLAGS_vout_ios = @CFLAGS_vout_ios@
-CFLAGS_vout_sdl = @CFLAGS_vout_sdl@
-CFLAGS_x264 = @CFLAGS_x264@
-CFLAGS_xcb_window = @CFLAGS_xcb_window@
-CFLAGS_xml = @CFLAGS_xml@
-CFLAGS_xosd = @CFLAGS_xosd@
-CFLAGS_zvbi = @CFLAGS_zvbi@
-CONTRIB_DIR = @CONTRIB_DIR@
-COPYRIGHT_MESSAGE = @COPYRIGHT_MESSAGE@
-COPYRIGHT_YEARS = @COPYRIGHT_YEARS@
-CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
-CPPFLAGS_a52tofloat32 = @CPPFLAGS_a52tofloat32@
-CPPFLAGS_access_dv = @CPPFLAGS_access_dv@
-CPPFLAGS_access_gnomevfs = @CPPFLAGS_access_gnomevfs@
-CPPFLAGS_access_jack = @CPPFLAGS_access_jack@
-CPPFLAGS_access_mtp = @CPPFLAGS_access_mtp@
-CPPFLAGS_access_output_shout = @CPPFLAGS_access_output_shout@
-CPPFLAGS_bonjour = @CPPFLAGS_bonjour@
-CPPFLAGS_caca = @CPPFLAGS_caca@
-CPPFLAGS_dc1394 = @CPPFLAGS_dc1394@
-CPPFLAGS_decklink = @CPPFLAGS_decklink@
-CPPFLAGS_dirac = @CPPFLAGS_dirac@
-CPPFLAGS_directfb = @CPPFLAGS_directfb@
-CPPFLAGS_dmo = @CPPFLAGS_dmo@
-CPPFLAGS_dtstofloat32 = @CPPFLAGS_dtstofloat32@
-CPPFLAGS_dvdread = @CPPFLAGS_dvdread@
-CPPFLAGS_faad = @CPPFLAGS_faad@
-CPPFLAGS_flac = @CPPFLAGS_flac@
-CPPFLAGS_fluidsynth = @CPPFLAGS_fluidsynth@
-CPPFLAGS_freetype = @CPPFLAGS_freetype@
-CPPFLAGS_goom = @CPPFLAGS_goom@
-CPPFLAGS_jack = @CPPFLAGS_jack@
-CPPFLAGS_kate = @CPPFLAGS_kate@
-CPPFLAGS_libass = @CPPFLAGS_libass@
-CPPFLAGS_libbluray = @CPPFLAGS_libbluray@
-CPPFLAGS_libmpeg2 = @CPPFLAGS_libmpeg2@
-CPPFLAGS_mpgatofixed32 = @CPPFLAGS_mpgatofixed32@
-CPPFLAGS_mtp = @CPPFLAGS_mtp@
-CPPFLAGS_mux_ogg = @CPPFLAGS_mux_ogg@
-CPPFLAGS_notify = @CPPFLAGS_notify@
-CPPFLAGS_ogg = @CPPFLAGS_ogg@
-CPPFLAGS_opencv_example = @CPPFLAGS_opencv_example@
-CPPFLAGS_opencv_wrapper = @CPPFLAGS_opencv_wrapper@
-CPPFLAGS_portaudio = @CPPFLAGS_portaudio@
-CPPFLAGS_qt4 = @CPPFLAGS_qt4@
-CPPFLAGS_quicktime = @CPPFLAGS_quicktime@
-CPPFLAGS_realvideo = @CPPFLAGS_realvideo@
-CPPFLAGS_samplerate = @CPPFLAGS_samplerate@
-CPPFLAGS_schroedinger = @CPPFLAGS_schroedinger@
-CPPFLAGS_skins2 = @CPPFLAGS_skins2@
-CPPFLAGS_speex = @CPPFLAGS_speex@
-CPPFLAGS_sqlite = @CPPFLAGS_sqlite@
-CPPFLAGS_svg = @CPPFLAGS_svg@
-CPPFLAGS_theora = @CPPFLAGS_theora@
-CPPFLAGS_twolame = @CPPFLAGS_twolame@
-CPPFLAGS_udev = @CPPFLAGS_udev@
-CPPFLAGS_upnp = @CPPFLAGS_upnp@
-CPPFLAGS_vorbis = @CPPFLAGS_vorbis@
-CPPFLAGS_x264 = @CPPFLAGS_x264@
-CPPFLAGS_xml = @CPPFLAGS_xml@
-CXX = @CXX@
-CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
-CXXFLAGS_dshow = @CXXFLAGS_dshow@
-CXXFLAGS_live555 = @CXXFLAGS_live555@
-CXXFLAGS_mkv = @CXXFLAGS_mkv@
-CXXFLAGS_mod = @CXXFLAGS_mod@
-CXXFLAGS_projectm = @CXXFLAGS_projectm@
-CXXFLAGS_qt4 = @CXXFLAGS_qt4@
-CXXFLAGS_skins2 = @CXXFLAGS_skins2@
-CXXFLAGS_taglib = @CXXFLAGS_taglib@
-CXXFLAGS_upnp = @CXXFLAGS_upnp@
-CYGPATH_W = @CYGPATH_W@
-DBUS_CFLAGS = @DBUS_CFLAGS@
-DBUS_LIBS = @DBUS_LIBS@
-DC1394_CFLAGS = @DC1394_CFLAGS@
-DC1394_LIBS = @DC1394_LIBS@
-DCA_CFLAGS = @DCA_CFLAGS@
-DCA_LIBS = @DCA_LIBS@
-DEFS = @DEFS@
-DEFS_BIGENDIAN = @DEFS_BIGENDIAN@
-DEPDIR = @DEPDIR@
-DESKTOP_FILE_VALIDATE = @DESKTOP_FILE_VALIDATE@
-DIRAC_CFLAGS = @DIRAC_CFLAGS@
-DIRAC_LIBS = @DIRAC_LIBS@
-DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@
-DIRECTFB_CONFIG = @DIRECTFB_CONFIG@
-DIRECTFB_LIBS = @DIRECTFB_LIBS@
-DLLTOOL = @DLLTOOL@
-DSYMUTIL = @DSYMUTIL@
-DUMPBIN = @DUMPBIN@
-DVBPSI_CFLAGS = @DVBPSI_CFLAGS@
-DVBPSI_LIBS = @DVBPSI_LIBS@
-DVDNAV_CFLAGS = @DVDNAV_CFLAGS@
-DVDNAV_LIBS = @DVDNAV_LIBS@
-DVDREAD_CFLAGS = @DVDREAD_CFLAGS@
-DVDREAD_LIBS = @DVDREAD_LIBS@
-DV_CFLAGS = @DV_CFLAGS@
-DV_LIBS = @DV_LIBS@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
-EGL_CFLAGS = @EGL_CFLAGS@
-EGL_LIBS = @EGL_LIBS@
-EGREP = @EGREP@
-EXEEXT = @EXEEXT@
-FGREP = @FGREP@
-FILE_LIBVLCCORE_DLL = @FILE_LIBVLCCORE_DLL@
-FILE_LIBVLC_DLL = @FILE_LIBVLC_DLL@
-FLAC_CFLAGS = @FLAC_CFLAGS@
-FLAC_LIBS = @FLAC_LIBS@
-FLUIDSYNTH_CFLAGS = @FLUIDSYNTH_CFLAGS@
-FLUIDSYNTH_LIBS = @FLUIDSYNTH_LIBS@
-FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
-FREETYPE_LIBS = @FREETYPE_LIBS@
-FRIBIDI_CFLAGS = @FRIBIDI_CFLAGS@
-FRIBIDI_LIBS = @FRIBIDI_LIBS@
-GCRYPT_CFLAGS = @GCRYPT_CFLAGS@
-GCRYPT_LIBS = @GCRYPT_LIBS@
-GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
-GL_CFLAGS = @GL_CFLAGS@
-GL_LIBS = @GL_LIBS@
-GMSGFMT = @GMSGFMT@
-GMSGFMT_015 = @GMSGFMT_015@
-GNOMEVFS_CFLAGS = @GNOMEVFS_CFLAGS@
-GNOMEVFS_LIBS = @GNOMEVFS_LIBS@
-GNUGETOPT_LIBS = @GNUGETOPT_LIBS@
-GNUTLS_CFLAGS = @GNUTLS_CFLAGS@
-GNUTLS_LIBS = @GNUTLS_LIBS@
-GOOM_CFLAGS = @GOOM_CFLAGS@
-GOOM_LIBS = @GOOM_LIBS@
-GREP = @GREP@
-HILDON_CFLAGS = @HILDON_CFLAGS@
-HILDON_FM_CFLAGS = @HILDON_FM_CFLAGS@
-HILDON_FM_LIBS = @HILDON_FM_LIBS@
-HILDON_LIBS = @HILDON_LIBS@
-INSTALL = @INSTALL@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-INTLLIBS = @INTLLIBS@
-INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
-JACK_CFLAGS = @JACK_CFLAGS@
-JACK_LIBS = @JACK_LIBS@
-KAI_LIBS = @KAI_LIBS@
-KATE_CFLAGS = @KATE_CFLAGS@
-KATE_LIBS = @KATE_LIBS@
-KDE4_CONFIG = @KDE4_CONFIG@
-KVA_LIBS = @KVA_LIBS@
-LD = @LD@
-LDFLAGS = @LDFLAGS@
-LDFLAGS_android_surface = @LDFLAGS_android_surface@
-LDFLAGS_plugin = @LDFLAGS_plugin@
-LDFLAGS_vlc = @LDFLAGS_vlc@
-LDFLAGS_x264 = @LDFLAGS_x264@
-LIBASS_CFLAGS = @LIBASS_CFLAGS@
-LIBASS_LIBS = @LIBASS_LIBS@
-LIBCDDB_CFLAGS = @LIBCDDB_CFLAGS@
-LIBCDDB_LIBS = @LIBCDDB_LIBS@
-LIBCDIO_CFLAGS = @LIBCDIO_CFLAGS@
-LIBCDIO_LIBS = @LIBCDIO_LIBS@
-LIBDL = @LIBDL@
-LIBEXT = @LIBEXT@
-LIBICONV = @LIBICONV@
-LIBINTL = @LIBINTL@
-LIBM = @LIBM@
-LIBMODPLUG_CFLAGS = @LIBMODPLUG_CFLAGS@
-LIBMODPLUG_LIBS = @LIBMODPLUG_LIBS@
-LIBMPEG2_CFLAGS = @LIBMPEG2_CFLAGS@
-LIBMPEG2_LIBS = @LIBMPEG2_LIBS@
-LIBOBJS = @LIBOBJS@
-LIBPROXY_CFLAGS = @LIBPROXY_CFLAGS@
-LIBPROXY_LIBS = @LIBPROXY_LIBS@
-LIBS = @LIBS@
-LIBS_a52tofloat32 = @LIBS_a52tofloat32@
-LIBS_aa = @LIBS_aa@
-LIBS_access_avio = @LIBS_access_avio@
-LIBS_access_dv = @LIBS_access_dv@
-LIBS_access_eyetv = @LIBS_access_eyetv@
-LIBS_access_ftp = @LIBS_access_ftp@
-LIBS_access_gnomevfs = @LIBS_access_gnomevfs@
-LIBS_access_http = @LIBS_access_http@
-LIBS_access_imem = @LIBS_access_imem@
-LIBS_access_jack = @LIBS_access_jack@
-LIBS_access_mms = @LIBS_access_mms@
-LIBS_access_mtp = @LIBS_access_mtp@
-LIBS_access_output_shout = @LIBS_access_output_shout@
-LIBS_access_output_udp = @LIBS_access_output_udp@
-LIBS_access_realrtsp = @LIBS_access_realrtsp@
-LIBS_access_rtmp = @LIBS_access_rtmp@
-LIBS_access_sftp = @LIBS_access_sftp@
-LIBS_access_smb = @LIBS_access_smb@
-LIBS_access_tcp = @LIBS_access_tcp@
-LIBS_access_udp = @LIBS_access_udp@
-LIBS_adjust = @LIBS_adjust@
-LIBS_audiobargraph_a = @LIBS_audiobargraph_a@
-LIBS_audioqueue = @LIBS_audioqueue@
-LIBS_audioscrobbler = @LIBS_audioscrobbler@
-LIBS_auhal = @LIBS_auhal@
-LIBS_avcodec = @LIBS_avcodec@
-LIBS_avformat = @LIBS_avformat@
-LIBS_ball = @LIBS_ball@
-LIBS_bonjour = @LIBS_bonjour@
-LIBS_caca = @LIBS_caca@
-LIBS_cdda = @LIBS_cdda@
-LIBS_chorus_flanger = @LIBS_chorus_flanger@
-LIBS_colorthres = @LIBS_colorthres@
-LIBS_compressor = @LIBS_compressor@
-LIBS_crystalhd = @LIBS_crystalhd@
-LIBS_dbus = @LIBS_dbus@
-LIBS_dc1394 = @LIBS_dc1394@
-LIBS_dirac = @LIBS_dirac@
-LIBS_direct2d = @LIBS_direct2d@
-LIBS_direct3d = @LIBS_direct3d@
-LIBS_directfb = @LIBS_directfb@
-LIBS_directx = @LIBS_directx@
-LIBS_dmo = @LIBS_dmo@
-LIBS_dshow = @LIBS_dshow@
-LIBS_dtstofloat32 = @LIBS_dtstofloat32@
-LIBS_dvdnav = @LIBS_dvdnav@
-LIBS_dvdread = @LIBS_dvdread@
-LIBS_equalizer = @LIBS_equalizer@
-LIBS_extract = @LIBS_extract@
-LIBS_faad = @LIBS_faad@
-LIBS_flac = @LIBS_flac@
-LIBS_fluidsynth = @LIBS_fluidsynth@
-LIBS_freetype = @LIBS_freetype@
-LIBS_gaussianblur = @LIBS_gaussianblur@
-LIBS_globalhotkeys = @LIBS_globalhotkeys@
-LIBS_glwin32 = @LIBS_glwin32@
-LIBS_gme = @LIBS_gme@
-LIBS_gnutls = @LIBS_gnutls@
-LIBS_goom = @LIBS_goom@
-LIBS_gradient = @LIBS_gradient@
-LIBS_grain = @LIBS_grain@
-LIBS_growl = @LIBS_growl@
-LIBS_headphone_channel_mixer = @LIBS_headphone_channel_mixer@
-LIBS_hildon = @LIBS_hildon@
-LIBS_hotkeys = @LIBS_hotkeys@
-LIBS_hqdn3d = @LIBS_hqdn3d@
-LIBS_i420_rgb = @LIBS_i420_rgb@
-LIBS_i420_rgb_mmx = @LIBS_i420_rgb_mmx@
-LIBS_inhibit = @LIBS_inhibit@
-LIBS_jack = @LIBS_jack@
-LIBS_kate = @LIBS_kate@
-LIBS_libass = @LIBS_libass@
-LIBS_libbluray = @LIBS_libbluray@
-LIBS_libmpeg2 = @LIBS_libmpeg2@
-LIBS_libvlc = @LIBS_libvlc@
-LIBS_libvlccore = @LIBS_libvlccore@
-LIBS_linsys_sdi = @LIBS_linsys_sdi@
-LIBS_lirc = @LIBS_lirc@
-LIBS_live555 = @LIBS_live555@
-LIBS_lua = @LIBS_lua@
-LIBS_macosx = @LIBS_macosx@
-LIBS_macosx_dialog_provider = @LIBS_macosx_dialog_provider@
-LIBS_memcpyaltivec = @LIBS_memcpyaltivec@
-LIBS_minimal_macosx = @LIBS_minimal_macosx@
-LIBS_mkv = @LIBS_mkv@
-LIBS_mod = @LIBS_mod@
-LIBS_mono = @LIBS_mono@
-LIBS_mosaic = @LIBS_mosaic@
-LIBS_motion = @LIBS_motion@
-LIBS_mp4 = @LIBS_mp4@
-LIBS_mpc = @LIBS_mpc@
-LIBS_mpgatofixed32 = @LIBS_mpgatofixed32@
-LIBS_mtp = @LIBS_mtp@
-LIBS_mux_ogg = @LIBS_mux_ogg@
-LIBS_ncurses = @LIBS_ncurses@
-LIBS_netsync = @LIBS_netsync@
-LIBS_noise = @LIBS_noise@
-LIBS_normvol = @LIBS_normvol@
-LIBS_notify = @LIBS_notify@
-LIBS_ogg = @LIBS_ogg@
-LIBS_oldrc = @LIBS_oldrc@
-LIBS_omxil = @LIBS_omxil@
-LIBS_opencv_example = @LIBS_opencv_example@
-LIBS_opencv_wrapper = @LIBS_opencv_wrapper@
-LIBS_panoramix = @LIBS_panoramix@
-LIBS_param_eq = @LIBS_param_eq@
-LIBS_plugin = @LIBS_plugin@
-LIBS_png = @LIBS_png@
-LIBS_portaudio = @LIBS_portaudio@
-LIBS_postproc = @LIBS_postproc@
-LIBS_projectm = @LIBS_projectm@
-LIBS_psychedelic = @LIBS_psychedelic@
-LIBS_qt4 = @LIBS_qt4@
-LIBS_quartztext = @LIBS_quartztext@
-LIBS_quicktime = @LIBS_quicktime@
-LIBS_realvideo = @LIBS_realvideo@
-LIBS_remoteosd = @LIBS_remoteosd@
-LIBS_ripple = @LIBS_ripple@
-LIBS_rotate = @LIBS_rotate@
-LIBS_rtp = @LIBS_rtp@
-LIBS_samplerate = @LIBS_samplerate@
-LIBS_sap = @LIBS_sap@
-LIBS_scene = @LIBS_scene@
-LIBS_schroedinger = @LIBS_schroedinger@
-LIBS_screen = @LIBS_screen@
-LIBS_sdl_image = @LIBS_sdl_image@
-LIBS_sid = @LIBS_sid@
-LIBS_skins2 = @LIBS_skins2@
-LIBS_spatializer = @LIBS_spatializer@
-LIBS_speex = @LIBS_speex@
-LIBS_sqlite = @LIBS_sqlite@
-LIBS_stream_out_raop = @LIBS_stream_out_raop@
-LIBS_stream_out_rtp = @LIBS_stream_out_rtp@
-LIBS_stream_out_select = @LIBS_stream_out_select@
-LIBS_stream_out_standard = @LIBS_stream_out_standard@
-LIBS_stream_out_switcher = @LIBS_stream_out_switcher@
-LIBS_svg = @LIBS_svg@
-LIBS_swscale = @LIBS_swscale@
-LIBS_taglib = @LIBS_taglib@
-LIBS_telepathy = @LIBS_telepathy@
-LIBS_theora = @LIBS_theora@
-LIBS_tremor = @LIBS_tremor@
-LIBS_ts = @LIBS_ts@
-LIBS_twolame = @LIBS_twolame@
-LIBS_udev = @LIBS_udev@
-LIBS_unzip = @LIBS_unzip@
-LIBS_upnp = @LIBS_upnp@
-LIBS_vcd = @LIBS_vcd@
-LIBS_vcdx = @LIBS_vcdx@
-LIBS_visual = @LIBS_visual@
-LIBS_vlc = @LIBS_vlc@
-LIBS_vod_rtsp = @LIBS_vod_rtsp@
-LIBS_vorbis = @LIBS_vorbis@
-LIBS_vout_ios = @LIBS_vout_ios@
-LIBS_vout_macosx = @LIBS_vout_macosx@
-LIBS_vout_sdl = @LIBS_vout_sdl@
-LIBS_wave = @LIBS_wave@
-LIBS_waveout = @LIBS_waveout@
-LIBS_win32text = @LIBS_win32text@
-LIBS_wingapi = @LIBS_wingapi@
-LIBS_wingdi = @LIBS_wingdi@
-LIBS_x264 = @LIBS_x264@
-LIBS_xml = @LIBS_xml@
-LIBS_xosd = @LIBS_xosd@
-LIBS_zip = @LIBS_zip@
-LIBS_zvbi = @LIBS_zvbi@
-LIBTOOL = @LIBTOOL@
-LIBV4L2_CFLAGS = @LIBV4L2_CFLAGS@
-LIBV4L2_LIBS = @LIBV4L2_LIBS@
-LIBVA_CFLAGS = @LIBVA_CFLAGS@
-LIBVA_LIBS = @LIBVA_LIBS@
-LIBVCDINFO_CFLAGS = @LIBVCDINFO_CFLAGS@
-LIBVCDINFO_LIBS = @LIBVCDINFO_LIBS@
-LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
-LIBXML2_LIBS = @LIBXML2_LIBS@
-LINSYS_SDI_CFLAGS = @LINSYS_SDI_CFLAGS@
-LINSYS_SDI_LIBS = @LINSYS_SDI_LIBS@
-LIPO = @LIPO@
-LN_S = @LN_S@
-LTLIBICONV = @LTLIBICONV@
-LTLIBINTL = @LTLIBINTL@
-LTLIBOBJS = @LTLIBOBJS@
-LTLIBa52tofloat32 = @LTLIBa52tofloat32@
-LTLIBaa = @LTLIBaa@
-LTLIBaccess_avio = @LTLIBaccess_avio@
-LTLIBaccess_dv = @LTLIBaccess_dv@
-LTLIBaccess_eyetv = @LTLIBaccess_eyetv@
-LTLIBaccess_gnomevfs = @LTLIBaccess_gnomevfs@
-LTLIBaccess_jack = @LTLIBaccess_jack@
-LTLIBaccess_mtp = @LTLIBaccess_mtp@
-LTLIBaccess_output_shout = @LTLIBaccess_output_shout@
-LTLIBaccess_realrtsp = @LTLIBaccess_realrtsp@
-LTLIBaccess_sftp = @LTLIBaccess_sftp@
-LTLIBaccess_shm = @LTLIBaccess_shm@
-LTLIBaccess_smb = @LTLIBaccess_smb@
-LTLIBandroid_surface = @LTLIBandroid_surface@
-LTLIBaout_directx = @LTLIBaout_directx@
-LTLIBatmo = @LTLIBatmo@
-LTLIBaudioqueue = @LTLIBaudioqueue@
-LTLIBauhal = @LTLIBauhal@
-LTLIBavcodec = @LTLIBavcodec@
-LTLIBavformat = @LTLIBavformat@
-LTLIBbonjour = @LTLIBbonjour@
-LTLIBcaca = @LTLIBcaca@
-LTLIBcdda = @LTLIBcdda@
-LTLIBcrystalhd = @LTLIBcrystalhd@
-LTLIBdbus = @LTLIBdbus@
-LTLIBdc1394 = @LTLIBdc1394@
-LTLIBdecklink = @LTLIBdecklink@
-LTLIBdirac = @LTLIBdirac@
-LTLIBdirect2d = @LTLIBdirect2d@
-LTLIBdirect3d = @LTLIBdirect3d@
-LTLIBdirectfb = @LTLIBdirectfb@
-LTLIBdirectx = @LTLIBdirectx@
-LTLIBdmo = @LTLIBdmo@
-LTLIBdshow = @LTLIBdshow@
-LTLIBdtstofloat32 = @LTLIBdtstofloat32@
-LTLIBdvdnav = @LTLIBdvdnav@
-LTLIBdvdread = @LTLIBdvdread@
-LTLIBdynamicoverlay = @LTLIBdynamicoverlay@
-LTLIBegl = @LTLIBegl@
-LTLIBfaad = @LTLIBfaad@
-LTLIBfb = @LTLIBfb@
-LTLIBfbosd = @LTLIBfbosd@
-LTLIBflac = @LTLIBflac@
-LTLIBfluidsynth = @LTLIBfluidsynth@
-LTLIBfreetype = @LTLIBfreetype@
-LTLIBgl = @LTLIBgl@
-LTLIBglobalhotkeys = @LTLIBglobalhotkeys@
-LTLIBglwin32 = @LTLIBglwin32@
-LTLIBgme = @LTLIBgme@
-LTLIBgnutls = @LTLIBgnutls@
-LTLIBgoom = @LTLIBgoom@
-LTLIBgrowl = @LTLIBgrowl@
-LTLIBhildon = @LTLIBhildon@
-LTLIBinhibit = @LTLIBinhibit@
-LTLIBiomx = @LTLIBiomx@
-LTLIBjack = @LTLIBjack@
-LTLIBkate = @LTLIBkate@
-LTLIBlibass = @LTLIBlibass@
-LTLIBlibbluray = @LTLIBlibbluray@
-LTLIBlibmpeg2 = @LTLIBlibmpeg2@
-LTLIBlinsys_hdsdi = @LTLIBlinsys_hdsdi@
-LTLIBlinsys_sdi = @LTLIBlinsys_sdi@
-LTLIBlirc = @LTLIBlirc@
-LTLIBlive555 = @LTLIBlive555@
-LTLIBmacosx = @LTLIBmacosx@
-LTLIBmacosx_dialog_provider = @LTLIBmacosx_dialog_provider@
-LTLIBmce = @LTLIBmce@
-LTLIBmedia_library = @LTLIBmedia_library@
-LTLIBminimal_macosx = @LTLIBminimal_macosx@
-LTLIBmkv = @LTLIBmkv@
-LTLIBmod = @LTLIBmod@
-LTLIBmpc = @LTLIBmpc@
-LTLIBmpgatofixed32 = @LTLIBmpgatofixed32@
-LTLIBmtp = @LTLIBmtp@
-LTLIBmux_ogg = @LTLIBmux_ogg@
-LTLIBncurses = @LTLIBncurses@
-LTLIBnotify = @LTLIBnotify@
-LTLIBogg = @LTLIBogg@
-LTLIBomxil = @LTLIBomxil@
-LTLIBopencv_example = @LTLIBopencv_example@
-LTLIBopencv_wrapper = @LTLIBopencv_wrapper@
-LTLIBopensles_android = @LTLIBopensles_android@
-LTLIBosd_parser = @LTLIBosd_parser@
-LTLIBosdmenu = @LTLIBosdmenu@
-LTLIBpanoramix = @LTLIBpanoramix@
-LTLIBpng = @LTLIBpng@
-LTLIBportaudio = @LTLIBportaudio@
-LTLIBpostproc = @LTLIBpostproc@
-LTLIBprojectm = @LTLIBprojectm@
-LTLIBpvr = @LTLIBpvr@
-LTLIBqt4 = @LTLIBqt4@
-LTLIBqtcapture = @LTLIBqtcapture@
-LTLIBqtsound = @LTLIBqtsound@
-LTLIBquartztext = @LTLIBquartztext@
-LTLIBquicktime = @LTLIBquicktime@
-LTLIBrealvideo = @LTLIBrealvideo@
-LTLIBsamplerate = @LTLIBsamplerate@
-LTLIBschroedinger = @LTLIBschroedinger@
-LTLIBscreen = @LTLIBscreen@
-LTLIBsdl_image = @LTLIBsdl_image@
-LTLIBshine = @LTLIBshine@
-LTLIBsid = @LTLIBsid@
-LTLIBskins2 = @LTLIBskins2@
-LTLIBspeex = @LTLIBspeex@
-LTLIBsqlite = @LTLIBsqlite@
-LTLIBstream_out_switcher = @LTLIBstream_out_switcher@
-LTLIBsvg = @LTLIBsvg@
-LTLIBswscale = @LTLIBswscale@
-LTLIBtaglib = @LTLIBtaglib@
-LTLIBtelepathy = @LTLIBtelepathy@
-LTLIBtelx = @LTLIBtelx@
-LTLIBtheora = @LTLIBtheora@
-LTLIBtremor = @LTLIBtremor@
-LTLIBtwolame = @LTLIBtwolame@
-LTLIBudev = @LTLIBudev@
-LTLIBupnp = @LTLIBupnp@
-LTLIBvcd = @LTLIBvcd@
-LTLIBvcdx = @LTLIBvcdx@
-LTLIBvisual = @LTLIBvisual@
-LTLIBvorbis = @LTLIBvorbis@
-LTLIBvout_ios = @LTLIBvout_ios@
-LTLIBvout_macosx = @LTLIBvout_macosx@
-LTLIBvout_sdl = @LTLIBvout_sdl@
-LTLIBwaveout = @LTLIBwaveout@
-LTLIBwingapi = @LTLIBwingapi@
-LTLIBwingdi = @LTLIBwingdi@
-LTLIBwma_fixed = @LTLIBwma_fixed@
-LTLIBx264 = @LTLIBx264@
-LTLIBxcb_glx = @LTLIBxcb_glx@
-LTLIBxcb_xv = @LTLIBxcb_xv@
-LTLIBxml = @LTLIBxml@
-LTLIBxosd = @LTLIBxosd@
-LTLIBzvbi = @LTLIBzvbi@
-LUAC = @LUAC@
-LUA_CFLAGS = @LUA_CFLAGS@
-LUA_LIBS = @LUA_LIBS@
-MACOSX_DEPLOYMENT_TARGET = @MACOSX_DEPLOYMENT_TARGET@
-MAINT = @MAINT@
-MAKEINFO = @MAKEINFO@
-MANIFEST_TOOL = @MANIFEST_TOOL@
-MCE_CFLAGS = @MCE_CFLAGS@
-MCE_LIBS = @MCE_LIBS@
-MINIZIP_CFLAGS = @MINIZIP_CFLAGS@
-MINIZIP_LIBS = @MINIZIP_LIBS@
-MKDIR_P = @MKDIR_P@
-MOC = @MOC@
-MSGFMT = @MSGFMT@
-MSGFMT_015 = @MSGFMT_015@
-MSGMERGE = @MSGMERGE@
-MTP_CFLAGS = @MTP_CFLAGS@
-MTP_LIBS = @MTP_LIBS@
-MUX_OGG_CFLAGS = @MUX_OGG_CFLAGS@
-MUX_OGG_LIBS = @MUX_OGG_LIBS@
-NEON_CFLAGS = @NEON_CFLAGS@
-NM = @NM@
-NMEDIT = @NMEDIT@
-NOTIFY_CFLAGS = @NOTIFY_CFLAGS@
-NOTIFY_LIBS = @NOTIFY_LIBS@
-OBJC = @OBJC@
-OBJCDEPMODE = @OBJCDEPMODE@
-OBJCFLAGS = @OBJCFLAGS@
-OBJCFLAGS_growl = @OBJCFLAGS_growl@
-OBJCFLAGS_macosx = @OBJCFLAGS_macosx@
-OBJCFLAGS_minimal_macosx = @OBJCFLAGS_minimal_macosx@
-OBJCOPY = @OBJCOPY@
-OBJDUMP = @OBJDUMP@
-OBJEXT = @OBJEXT@
-OGG_CFLAGS = @OGG_CFLAGS@
-OGG_LIBS = @OGG_LIBS@
-OPENCV_CFLAGS = @OPENCV_CFLAGS@
-OPENCV_LIBS = @OPENCV_LIBS@
-OSS_LIBS = @OSS_LIBS@
-OTOOL = @OTOOL@
-OTOOL64 = @OTOOL64@
-PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_URL = @PACKAGE_URL@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
-PKGDIR = @PKGDIR@
-PKG_CONFIG = @PKG_CONFIG@
-PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
-PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
-PORTAUDIO_CFLAGS = @PORTAUDIO_CFLAGS@
-PORTAUDIO_LIBS = @PORTAUDIO_LIBS@
-POSTPROC_CFLAGS = @POSTPROC_CFLAGS@
-POSTPROC_LIBS = @POSTPROC_LIBS@
-POSUB = @POSUB@
-PROGRAMFILES = @PROGRAMFILES@
-PROJECTM2_CFLAGS = @PROJECTM2_CFLAGS@
-PROJECTM2_LIBS = @PROJECTM2_LIBS@
-PROJECTM_CFLAGS = @PROJECTM_CFLAGS@
-PROJECTM_LIBS = @PROJECTM_LIBS@
-PULSE_CFLAGS = @PULSE_CFLAGS@
-PULSE_LIBS = @PULSE_LIBS@
-QT4_CFLAGS = @QT4_CFLAGS@
-QT4_LIBS = @QT4_LIBS@
-RANLIB = @RANLIB@
-RC = @RC@
-RCC = @RCC@
-SAMPLERATE_CFLAGS = @SAMPLERATE_CFLAGS@
-SAMPLERATE_LIBS = @SAMPLERATE_LIBS@
-SCHROEDINGER_CFLAGS = @SCHROEDINGER_CFLAGS@
-SCHROEDINGER_LIBS = @SCHROEDINGER_LIBS@
-SDL_CFLAGS = @SDL_CFLAGS@
-SDL_IMAGE_CFLAGS = @SDL_IMAGE_CFLAGS@
-SDL_IMAGE_LIBS = @SDL_IMAGE_LIBS@
-SDL_LIBS = @SDL_LIBS@
-SED = @SED@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
-SHOUT_CFLAGS = @SHOUT_CFLAGS@
-SHOUT_LIBS = @SHOUT_LIBS@
-SID_CFLAGS = @SID_CFLAGS@
-SID_LIBS = @SID_LIBS@
-SOCKET_LIBS = @SOCKET_LIBS@
-SPEEXDSP_CFLAGS = @SPEEXDSP_CFLAGS@
-SPEEXDSP_LIBS = @SPEEXDSP_LIBS@
-SPEEX_CFLAGS = @SPEEX_CFLAGS@
-SPEEX_LIBS = @SPEEX_LIBS@
-SQLITE_CFLAGS = @SQLITE_CFLAGS@
-SQLITE_LIBS = @SQLITE_LIBS@
-STRIP = @STRIP@
-SVG_CFLAGS = @SVG_CFLAGS@
-SVG_LIBS = @SVG_LIBS@
-SWSCALE_CFLAGS = @SWSCALE_CFLAGS@
-SWSCALE_LIBS = @SWSCALE_LIBS@
-SYS = @SYS@
-TAGLIB_CFLAGS = @TAGLIB_CFLAGS@
-TAGLIB_LIBS = @TAGLIB_LIBS@
-THEORA_CFLAGS = @THEORA_CFLAGS@
-THEORA_LIBS = @THEORA_LIBS@
-TIGER_CFLAGS = @TIGER_CFLAGS@
-TIGER_LIBS = @TIGER_LIBS@
-TWOLAME_CFLAGS = @TWOLAME_CFLAGS@
-TWOLAME_LIBS = @TWOLAME_LIBS@
-U2D = @U2D@
-UDEV_CFLAGS = @UDEV_CFLAGS@
-UDEV_LIBS = @UDEV_LIBS@
-UIC = @UIC@
-UPNP_CFLAGS = @UPNP_CFLAGS@
-UPNP_LIBS = @UPNP_LIBS@
-USE_NLS = @USE_NLS@
-VERSION = @VERSION@
-VERSION_EXTRA = @VERSION_EXTRA@
-VERSION_MAJOR = @VERSION_MAJOR@
-VERSION_MESSAGE = @VERSION_MESSAGE@
-VERSION_MINOR = @VERSION_MINOR@
-VERSION_REVISION = @VERSION_REVISION@
-VORBIS_CFLAGS = @VORBIS_CFLAGS@
-VORBIS_LIBS = @VORBIS_LIBS@
-WINDRES = @WINDRES@
-WINE_SDK_PATH = @WINE_SDK_PATH@
-X264_CFLAGS = @X264_CFLAGS@
-X264_LIBS = @X264_LIBS@
-XCB_CFLAGS = @XCB_CFLAGS@
-XCB_COMPOSITE_CFLAGS = @XCB_COMPOSITE_CFLAGS@
-XCB_COMPOSITE_LIBS = @XCB_COMPOSITE_LIBS@
-XCB_KEYSYMS_CFLAGS = @XCB_KEYSYMS_CFLAGS@
-XCB_KEYSYMS_LIBS = @XCB_KEYSYMS_LIBS@
-XCB_LIBS = @XCB_LIBS@
-XCB_RANDR_CFLAGS = @XCB_RANDR_CFLAGS@
-XCB_RANDR_LIBS = @XCB_RANDR_LIBS@
-XCB_SHM_CFLAGS = @XCB_SHM_CFLAGS@
-XCB_SHM_LIBS = @XCB_SHM_LIBS@
-XCB_XV_CFLAGS = @XCB_XV_CFLAGS@
-XCB_XV_LIBS = @XCB_XV_LIBS@
-XEXT_CFLAGS = @XEXT_CFLAGS@
-XEXT_LIBS = @XEXT_LIBS@
-XGETTEXT = @XGETTEXT@
-XGETTEXT_015 = @XGETTEXT_015@
-XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
-XINERAMA_CFLAGS = @XINERAMA_CFLAGS@
-XINERAMA_LIBS = @XINERAMA_LIBS@
-XMKMF = @XMKMF@
-XPM_CFLAGS = @XPM_CFLAGS@
-XPM_LIBS = @XPM_LIBS@
-XPROTO_CFLAGS = @XPROTO_CFLAGS@
-XPROTO_LIBS = @XPROTO_LIBS@
-X_CFLAGS = @X_CFLAGS@
-X_EXTRA_LIBS = @X_EXTRA_LIBS@
-X_LIBS = @X_LIBS@
-X_PRE_LIBS = @X_PRE_LIBS@
-ZVBI_CFLAGS = @ZVBI_CFLAGS@
-ZVBI_LIBS = @ZVBI_LIBS@
-abs_builddir = @abs_builddir@
-abs_srcdir = @abs_srcdir@
-abs_top_builddir = @abs_top_builddir@
-abs_top_srcdir = @abs_top_srcdir@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_CXX = @ac_ct_CXX@
-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
-ac_ct_OBJC = @ac_ct_OBJC@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-am__tar = @am__tar@
-am__untar = @am__untar@
-bindir = @bindir@
-build = @build@
-build_alias = @build_alias@
-build_cpu = @build_cpu@
-build_os = @build_os@
-build_vendor = @build_vendor@
-builddir = @builddir@
-datadir = @datadir@
-datarootdir = @datarootdir@
-docdir = @docdir@
-dvidir = @dvidir@
-exec_prefix = @exec_prefix@
-host = @host@
-host_alias = @host_alias@
-host_cpu = @host_cpu@
-host_os = @host_os@
-host_vendor = @host_vendor@
-htmldir = @htmldir@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localedir = @localedir@
-localstatedir = @localstatedir@
-mandir = @mandir@
-mkdir_p = @mkdir_p@
-oldincludedir = @oldincludedir@
-pdfdir = @pdfdir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@
-psdir = @psdir@
-sbindir = @sbindir@
-sharedstatedir = @sharedstatedir@
-soliddatadir = @soliddatadir@
-srcdir = @srcdir@
-sysconfdir = @sysconfdir@
-target_alias = @target_alias@
-top_build_prefix = @top_build_prefix@
-top_builddir = @top_builddir@
-top_srcdir = @top_srcdir@
-vlcdatadir = @vlcdatadir@
-vlclibdir = @vlclibdir@
-basedir = stream_filter
-dir = stream_filter/dash
-mods = stream_filter_dash
-libvlc_LTLIBRARIES = libstream_filter_dash_plugin.la
-EXTRA_LTLIBRARIES = 
-NULL = 
-libvlcdir = $(vlclibdir)/plugins/$(basedir)
-EXTRA_DIST = Modules.am
-BUILT_SOURCES = 
-CLEANFILES = $(BUILT_SOURCES)
-LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la
-
-# Module name from object or executable file name.
-MODULE_NAME = `p="$@"; p="$${p\#\#*/}"; p="$${p\#lib}"; echo "$${p%_plugin*}"`
-AM_CFLAGS = 
-AM_CXXFLAGS = 
-AM_OBJCFLAGS = 
-AM_LDFLAGS = -rpath '$(libvlcdir)' \
-	-avoid-version -module \
-	-export-symbols-regex ^vlc_entry \
-	-shrext $(LIBEXT) \
-	-no-undefined
-
-AM_LIBADD = $(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la $(LIBS_plugin)
-SOURCES_stream_filter_dash = \
-    adaptationlogic/AbstractAdaptationLogic.cpp \
-    adaptationlogic/AbstractAdaptationLogic.h \
-    adaptationlogic/AdaptationLogicFactory.cpp \
-    adaptationlogic/AdaptationLogicFactory.h \
-    adaptationlogic/AlwaysBestAdaptationLogic.cpp \
-    adaptationlogic/AlwaysBestAdaptationLogic.h \
-    adaptationlogic/IAdaptationLogic.h \
-    adaptationlogic/IDownloadRateObserver.h \
-    adaptationlogic/RateBasedAdaptationLogic.h \
-    adaptationlogic/RateBasedAdaptationLogic.cpp \
-    exceptions/EOFException.h \
-    http/Chunk.cpp \
-    http/Chunk.h \
-    http/HTTPConnection.cpp \
-    http/HTTPConnection.h \
-    http/HTTPConnectionManager.cpp \
-    http/HTTPConnectionManager.h \
-    http/IHTTPConnection.h \
-    mpd/BaseUrl.h \
-    mpd/BasicCMManager.cpp \
-    mpd/BasicCMManager.h \
-    mpd/BasicCMParser.cpp \
-    mpd/BasicCMParser.h \
-    mpd/CommonAttributesElements.cpp \
-    mpd/CommonAttributesElements.h \
-    mpd/ContentDescription.cpp \
-    mpd/ContentDescription.h \
-    mpd/Group.cpp \
-    mpd/Group.h \
-    mpd/IMPDManager.h \
-    mpd/IMPDParser.h \
-    mpd/MPD.cpp \
-    mpd/MPD.h \
-    mpd/MPDManagerFactory.cpp \
-    mpd/MPDManagerFactory.h \
-    mpd/Period.cpp \
-    mpd/Period.h \
-    mpd/ProgramInformation.cpp \
-    mpd/ProgramInformation.h \
-    mpd/Representation.cpp \
-    mpd/Representation.h \
-    mpd/Segment.cpp \
-    mpd/Segment.h \
-    mpd/SegmentInfo.cpp \
-    mpd/SegmentInfo.h \
-    mpd/SegmentInfoCommon.cpp \
-    mpd/SegmentInfoCommon.h \
-    mpd/SegmentInfoDefault.cpp \
-    mpd/SegmentInfoDefault.h \
-    mpd/SegmentTemplate.cpp \
-    mpd/SegmentTemplate.h \
-    mpd/SegmentTimeline.cpp \
-    mpd/SegmentTimeline.h \
-    mpd/TrickModeType.cpp \
-    mpd/TrickModeType.h \
-    xml/DOMHelper.cpp \
-    xml/DOMHelper.h \
-    xml/DOMParser.cpp \
-    xml/DOMParser.h \
-    xml/Node.cpp \
-    xml/Node.h \
-    dash.cpp \
-    DASHManager.cpp \
-    DASHManager.h \
-    $(NULL)
-
-
-# The stream_filter_dash plugin
-libstream_filter_dash_plugin_la_SOURCES = $(SOURCES_stream_filter_dash)
-nodist_libstream_filter_dash_plugin_la_SOURCES = $(nodist_SOURCES_stream_filter_dash)
-# Force per-target objects:
-libstream_filter_dash_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) $(CPPFLAGS_stream_filter_dash)
-libstream_filter_dash_plugin_la_CFLAGS = $(AM_CFLAGS) $(CFLAGS_stream_filter_dash)
-libstream_filter_dash_plugin_la_CXXFLAGS = $(AM_CXXFLAGS) $(CXXFLAGS_stream_filter_dash)
-libstream_filter_dash_plugin_la_OBJCFLAGS = $(AM_OBJCFLAGS) $(OBJCFLAGS_stream_filter_dash)
-# Set LIBADD and DEPENDENCIES manually:
-libstream_filter_dash_plugin_la_LIBADD = $(AM_LIBADD) $(LIBS_stream_filter_dash)
-libstream_filter_dash_plugin_la_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS_stream_filter_dash)
-libstream_filter_dash_plugin_la_DEPENDENCIES = 
-all: $(BUILT_SOURCES)
-	$(MAKE) $(AM_MAKEFLAGS) all-am
-
-.SUFFIXES:
-.SUFFIXES: .cpp .lo .o .obj
-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/modules/common.am $(srcdir)/Modules.am $(am__configure_deps)
-	@for dep in $?; do \
-	  case '$(am__configure_deps)' in \
-	    *$$dep*) \
-	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-	        && { if test -f $@; then exit 0; else break; fi; }; \
-	      exit 1;; \
-	  esac; \
-	done; \
-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/stream_filter/dash/Makefile'; \
-	$(am__cd) $(top_srcdir) && \
-	  $(AUTOMAKE) --gnu modules/stream_filter/dash/Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
-	@case '$?' in \
-	  *config.status*) \
-	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
-	  *) \
-	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
-	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
-	esac;
-$(top_srcdir)/modules/common.am $(srcdir)/Modules.am:
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(am__aclocal_m4_deps):
-install-libvlcLTLIBRARIES: $(libvlc_LTLIBRARIES)
-	@$(NORMAL_INSTALL)
-	test -z "$(libvlcdir)" || $(MKDIR_P) "$(DESTDIR)$(libvlcdir)"
-	@list='$(libvlc_LTLIBRARIES)'; test -n "$(libvlcdir)" || list=; \
-	list2=; for p in $$list; do \
-	  if test -f $$p; then \
-	    list2="$$list2 $$p"; \
-	  else :; fi; \
-	done; \
-	test -z "$$list2" || { \
-	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libvlcdir)'"; \
-	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libvlcdir)"; \
-	}
-
-uninstall-libvlcLTLIBRARIES:
-	@$(NORMAL_UNINSTALL)
-	@list='$(libvlc_LTLIBRARIES)'; test -n "$(libvlcdir)" || list=; \
-	for p in $$list; do \
-	  $(am__strip_dir) \
-	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libvlcdir)/$$f'"; \
-	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libvlcdir)/$$f"; \
-	done
-
-clean-libvlcLTLIBRARIES:
-	-test -z "$(libvlc_LTLIBRARIES)" || rm -f $(libvlc_LTLIBRARIES)
-	@list='$(libvlc_LTLIBRARIES)'; for p in $$list; do \
-	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
-	  test "$$dir" != "$$p" || dir=.; \
-	  echo "rm -f \"$${dir}/so_locations\""; \
-	  rm -f "$${dir}/so_locations"; \
-	done
-libstream_filter_dash_plugin.la: $(libstream_filter_dash_plugin_la_OBJECTS) $(libstream_filter_dash_plugin_la_DEPENDENCIES) $(EXTRA_libstream_filter_dash_plugin_la_DEPENDENCIES) 
-	$(AM_V_CXXLD)$(libstream_filter_dash_plugin_la_LINK) -rpath $(libvlcdir) $(libstream_filter_dash_plugin_la_OBJECTS) $(libstream_filter_dash_plugin_la_LIBADD) $(LIBS)
-
-mostlyclean-compile:
-	-rm -f *.$(OBJEXT)
-
-distclean-compile:
-	-rm -f *.tab.c
-
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-AbstractAdaptationLogic.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-AdaptationLogicFactory.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMManager.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMParser.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-Chunk.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-CommonAttributesElements.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-ContentDescription.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-DASHManager.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-DOMHelper.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-DOMParser.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-Group.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnection.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnectionManager.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-MPD.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-MPDManagerFactory.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-Node.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-Period.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-ProgramInformation.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-Representation.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-Segment.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfo.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoCommon.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoDefault.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTemplate.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTimeline.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-TrickModeType.Plo at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/libstream_filter_dash_plugin_la-dash.Plo at am__quote@
-
-.cpp.o:
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXXCOMPILE) -c -o $@ $<
-
-.cpp.obj:
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
-
-.cpp.lo:
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
-
-libstream_filter_dash_plugin_la-AbstractAdaptationLogic.lo: adaptationlogic/AbstractAdaptationLogic.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-AbstractAdaptationLogic.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-AbstractAdaptationLogic.Tpo -c -o libstream_filter_dash_plugin_la-AbstractAdaptationLogic.lo `test -f 'adaptationlogic/AbstractAdaptationLogic.cpp' || echo '$(srcdir)/'`adaptationlogic/AbstractAdaptationLogic.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-AbstractAdaptationLogic.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-AbstractAdaptationLogic.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='adaptationlogic/AbstractAdaptationLogic.cpp' object='libstream_filter_dash_plugin_la-AbstractAdaptationLogic.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-AbstractAdaptationLogic.lo `test -f 'adaptationlogic/AbstractAdaptationLogic.cpp' || echo '$(srcdir)/'`adaptationlogic/AbstractAdaptationLogic.cpp
-
-libstream_filter_dash_plugin_la-AdaptationLogicFactory.lo: adaptationlogic/AdaptationLogicFactory.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-AdaptationLogicFactory.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-AdaptationLogicFactory.Tpo -c -o libstream_filter_dash_plugin_la-AdaptationLogicFactory.lo `test -f 'adaptationlogic/AdaptationLogicFactory.cpp' || echo '$(srcdir)/'`adaptationlogic/AdaptationLogicFactory.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-AdaptationLogicFactory.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-AdaptationLogicFactory.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='adaptationlogic/AdaptationLogicFactory.cpp' object='libstream_filter_dash_plugin_la-AdaptationLogicFactory.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-AdaptationLogicFactory.lo `test -f 'adaptationlogic/AdaptationLogicFactory.cpp' || echo '$(srcdir)/'`adaptationlogic/AdaptationLogicFactory.cpp
-
-libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.lo: adaptationlogic/AlwaysBestAdaptationLogic.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.Tpo -c -o libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.lo `test -f 'adaptationlogic/AlwaysBestAdaptationLogic.cpp' || echo '$(srcdir)/'`adaptationlogic/AlwaysBestAdaptationLogic.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='adaptationlogic/AlwaysBestAdaptationLogic.cpp' object='libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-AlwaysBestAdaptationLogic.lo `test -f 'adaptationlogic/AlwaysBestAdaptationLogic.cpp' || echo '$(srcdir)/'`adaptationlogic/AlwaysBestAdaptationLogic.cpp
-
-libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.lo: adaptationlogic/RateBasedAdaptationLogic.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.Tpo -c -o libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.lo `test -f 'adaptationlogic/RateBasedAdaptationLogic.cpp' || echo '$(srcdir)/'`adaptationlogic/RateBasedAdaptationLogic.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='adaptationlogic/RateBasedAdaptationLogic.cpp' object='libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-RateBasedAdaptationLogic.lo `test -f 'adaptationlogic/RateBasedAdaptationLogic.cpp' || echo '$(srcdir)/'`adaptationlogic/RateBasedAdaptationLogic.cpp
-
-libstream_filter_dash_plugin_la-Chunk.lo: http/Chunk.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-Chunk.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-Chunk.Tpo -c -o libstream_filter_dash_plugin_la-Chunk.lo `test -f 'http/Chunk.cpp' || echo '$(srcdir)/'`http/Chunk.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-Chunk.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-Chunk.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='http/Chunk.cpp' object='libstream_filter_dash_plugin_la-Chunk.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-Chunk.lo `test -f 'http/Chunk.cpp' || echo '$(srcdir)/'`http/Chunk.cpp
-
-libstream_filter_dash_plugin_la-HTTPConnection.lo: http/HTTPConnection.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-HTTPConnection.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnection.Tpo -c -o libstream_filter_dash_plugin_la-HTTPConnection.lo `test -f 'http/HTTPConnection.cpp' || echo '$(srcdir)/'`http/HTTPConnection.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnection.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnection.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='http/HTTPConnection.cpp' object='libstream_filter_dash_plugin_la-HTTPConnection.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-HTTPConnection.lo `test -f 'http/HTTPConnection.cpp' || echo '$(srcdir)/'`http/HTTPConnection.cpp
-
-libstream_filter_dash_plugin_la-HTTPConnectionManager.lo: http/HTTPConnectionManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-HTTPConnectionManager.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnectionManager.Tpo -c -o libstream_filter_dash_plugin_la-HTTPConnectionManager.lo `test -f 'http/HTTPConnectionManager.cpp' || echo '$(srcdir)/'`http/HTTPConnectionManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnectionManager.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-HTTPConnectionManager.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='http/HTTPConnectionManager.cpp' object='libstream_filter_dash_plugin_la-HTTPConnectionManager.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-HTTPConnectionManager.lo `test -f 'http/HTTPConnectionManager.cpp' || echo '$(srcdir)/'`http/HTTPConnectionManager.cpp
-
-libstream_filter_dash_plugin_la-BasicCMManager.lo: mpd/BasicCMManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-BasicCMManager.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMManager.Tpo -c -o libstream_filter_dash_plugin_la-BasicCMManager.lo `test -f 'mpd/BasicCMManager.cpp' || echo '$(srcdir)/'`mpd/BasicCMManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMManager.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMManager.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/BasicCMManager.cpp' object='libstream_filter_dash_plugin_la-BasicCMManager.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-BasicCMManager.lo `test -f 'mpd/BasicCMManager.cpp' || echo '$(srcdir)/'`mpd/BasicCMManager.cpp
-
-libstream_filter_dash_plugin_la-BasicCMParser.lo: mpd/BasicCMParser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-BasicCMParser.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMParser.Tpo -c -o libstream_filter_dash_plugin_la-BasicCMParser.lo `test -f 'mpd/BasicCMParser.cpp' || echo '$(srcdir)/'`mpd/BasicCMParser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMParser.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-BasicCMParser.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/BasicCMParser.cpp' object='libstream_filter_dash_plugin_la-BasicCMParser.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-BasicCMParser.lo `test -f 'mpd/BasicCMParser.cpp' || echo '$(srcdir)/'`mpd/BasicCMParser.cpp
-
-libstream_filter_dash_plugin_la-CommonAttributesElements.lo: mpd/CommonAttributesElements.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-CommonAttributesElements.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-CommonAttributesElements.Tpo -c -o libstream_filter_dash_plugin_la-CommonAttributesElements.lo `test -f 'mpd/CommonAttributesElements.cpp' || echo '$(srcdir)/'`mpd/CommonAttributesElements.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-CommonAttributesElements.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-CommonAttributesElements.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/CommonAttributesElements.cpp' object='libstream_filter_dash_plugin_la-CommonAttributesElements.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-CommonAttributesElements.lo `test -f 'mpd/CommonAttributesElements.cpp' || echo '$(srcdir)/'`mpd/CommonAttributesElements.cpp
-
-libstream_filter_dash_plugin_la-ContentDescription.lo: mpd/ContentDescription.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-ContentDescription.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-ContentDescription.Tpo -c -o libstream_filter_dash_plugin_la-ContentDescription.lo `test -f 'mpd/ContentDescription.cpp' || echo '$(srcdir)/'`mpd/ContentDescription.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-ContentDescription.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-ContentDescription.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/ContentDescription.cpp' object='libstream_filter_dash_plugin_la-ContentDescription.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-ContentDescription.lo `test -f 'mpd/ContentDescription.cpp' || echo '$(srcdir)/'`mpd/ContentDescription.cpp
-
-libstream_filter_dash_plugin_la-Group.lo: mpd/Group.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-Group.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-Group.Tpo -c -o libstream_filter_dash_plugin_la-Group.lo `test -f 'mpd/Group.cpp' || echo '$(srcdir)/'`mpd/Group.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-Group.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-Group.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/Group.cpp' object='libstream_filter_dash_plugin_la-Group.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-Group.lo `test -f 'mpd/Group.cpp' || echo '$(srcdir)/'`mpd/Group.cpp
-
-libstream_filter_dash_plugin_la-MPD.lo: mpd/MPD.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-MPD.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-MPD.Tpo -c -o libstream_filter_dash_plugin_la-MPD.lo `test -f 'mpd/MPD.cpp' || echo '$(srcdir)/'`mpd/MPD.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-MPD.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-MPD.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/MPD.cpp' object='libstream_filter_dash_plugin_la-MPD.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-MPD.lo `test -f 'mpd/MPD.cpp' || echo '$(srcdir)/'`mpd/MPD.cpp
-
-libstream_filter_dash_plugin_la-MPDManagerFactory.lo: mpd/MPDManagerFactory.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-MPDManagerFactory.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-MPDManagerFactory.Tpo -c -o libstream_filter_dash_plugin_la-MPDManagerFactory.lo `test -f 'mpd/MPDManagerFactory.cpp' || echo '$(srcdir)/'`mpd/MPDManagerFactory.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-MPDManagerFactory.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-MPDManagerFactory.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/MPDManagerFactory.cpp' object='libstream_filter_dash_plugin_la-MPDManagerFactory.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-MPDManagerFactory.lo `test -f 'mpd/MPDManagerFactory.cpp' || echo '$(srcdir)/'`mpd/MPDManagerFactory.cpp
-
-libstream_filter_dash_plugin_la-Period.lo: mpd/Period.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-Period.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-Period.Tpo -c -o libstream_filter_dash_plugin_la-Period.lo `test -f 'mpd/Period.cpp' || echo '$(srcdir)/'`mpd/Period.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-Period.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-Period.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/Period.cpp' object='libstream_filter_dash_plugin_la-Period.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-Period.lo `test -f 'mpd/Period.cpp' || echo '$(srcdir)/'`mpd/Period.cpp
-
-libstream_filter_dash_plugin_la-ProgramInformation.lo: mpd/ProgramInformation.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-ProgramInformation.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-ProgramInformation.Tpo -c -o libstream_filter_dash_plugin_la-ProgramInformation.lo `test -f 'mpd/ProgramInformation.cpp' || echo '$(srcdir)/'`mpd/ProgramInformation.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-ProgramInformation.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-ProgramInformation.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/ProgramInformation.cpp' object='libstream_filter_dash_plugin_la-ProgramInformation.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-ProgramInformation.lo `test -f 'mpd/ProgramInformation.cpp' || echo '$(srcdir)/'`mpd/ProgramInformation.cpp
-
-libstream_filter_dash_plugin_la-Representation.lo: mpd/Representation.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-Representation.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-Representation.Tpo -c -o libstream_filter_dash_plugin_la-Representation.lo `test -f 'mpd/Representation.cpp' || echo '$(srcdir)/'`mpd/Representation.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-Representation.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-Representation.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/Representation.cpp' object='libstream_filter_dash_plugin_la-Representation.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-Representation.lo `test -f 'mpd/Representation.cpp' || echo '$(srcdir)/'`mpd/Representation.cpp
-
-libstream_filter_dash_plugin_la-Segment.lo: mpd/Segment.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-Segment.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-Segment.Tpo -c -o libstream_filter_dash_plugin_la-Segment.lo `test -f 'mpd/Segment.cpp' || echo '$(srcdir)/'`mpd/Segment.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-Segment.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-Segment.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/Segment.cpp' object='libstream_filter_dash_plugin_la-Segment.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-Segment.lo `test -f 'mpd/Segment.cpp' || echo '$(srcdir)/'`mpd/Segment.cpp
-
-libstream_filter_dash_plugin_la-SegmentInfo.lo: mpd/SegmentInfo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-SegmentInfo.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfo.Tpo -c -o libstream_filter_dash_plugin_la-SegmentInfo.lo `test -f 'mpd/SegmentInfo.cpp' || echo '$(srcdir)/'`mpd/SegmentInfo.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfo.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfo.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/SegmentInfo.cpp' object='libstream_filter_dash_plugin_la-SegmentInfo.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-SegmentInfo.lo `test -f 'mpd/SegmentInfo.cpp' || echo '$(srcdir)/'`mpd/SegmentInfo.cpp
-
-libstream_filter_dash_plugin_la-SegmentInfoCommon.lo: mpd/SegmentInfoCommon.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-SegmentInfoCommon.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoCommon.Tpo -c -o libstream_filter_dash_plugin_la-SegmentInfoCommon.lo `test -f 'mpd/SegmentInfoCommon.cpp' || echo '$(srcdir)/'`mpd/SegmentInfoCommon.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoCommon.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoCommon.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/SegmentInfoCommon.cpp' object='libstream_filter_dash_plugin_la-SegmentInfoCommon.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-SegmentInfoCommon.lo `test -f 'mpd/SegmentInfoCommon.cpp' || echo '$(srcdir)/'`mpd/SegmentInfoCommon.cpp
-
-libstream_filter_dash_plugin_la-SegmentInfoDefault.lo: mpd/SegmentInfoDefault.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-SegmentInfoDefault.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoDefault.Tpo -c -o libstream_filter_dash_plugin_la-SegmentInfoDefault.lo `test -f 'mpd/SegmentInfoDefault.cpp' || echo '$(srcdir)/'`mpd/SegmentInfoDefault.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoDefault.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentInfoDefault.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/SegmentInfoDefault.cpp' object='libstream_filter_dash_plugin_la-SegmentInfoDefault.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-SegmentInfoDefault.lo `test -f 'mpd/SegmentInfoDefault.cpp' || echo '$(srcdir)/'`mpd/SegmentInfoDefault.cpp
-
-libstream_filter_dash_plugin_la-SegmentTemplate.lo: mpd/SegmentTemplate.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-SegmentTemplate.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTemplate.Tpo -c -o libstream_filter_dash_plugin_la-SegmentTemplate.lo `test -f 'mpd/SegmentTemplate.cpp' || echo '$(srcdir)/'`mpd/SegmentTemplate.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTemplate.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTemplate.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/SegmentTemplate.cpp' object='libstream_filter_dash_plugin_la-SegmentTemplate.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-SegmentTemplate.lo `test -f 'mpd/SegmentTemplate.cpp' || echo '$(srcdir)/'`mpd/SegmentTemplate.cpp
-
-libstream_filter_dash_plugin_la-SegmentTimeline.lo: mpd/SegmentTimeline.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-SegmentTimeline.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTimeline.Tpo -c -o libstream_filter_dash_plugin_la-SegmentTimeline.lo `test -f 'mpd/SegmentTimeline.cpp' || echo '$(srcdir)/'`mpd/SegmentTimeline.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTimeline.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-SegmentTimeline.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/SegmentTimeline.cpp' object='libstream_filter_dash_plugin_la-SegmentTimeline.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-SegmentTimeline.lo `test -f 'mpd/SegmentTimeline.cpp' || echo '$(srcdir)/'`mpd/SegmentTimeline.cpp
-
-libstream_filter_dash_plugin_la-TrickModeType.lo: mpd/TrickModeType.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-TrickModeType.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-TrickModeType.Tpo -c -o libstream_filter_dash_plugin_la-TrickModeType.lo `test -f 'mpd/TrickModeType.cpp' || echo '$(srcdir)/'`mpd/TrickModeType.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-TrickModeType.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-TrickModeType.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='mpd/TrickModeType.cpp' object='libstream_filter_dash_plugin_la-TrickModeType.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-TrickModeType.lo `test -f 'mpd/TrickModeType.cpp' || echo '$(srcdir)/'`mpd/TrickModeType.cpp
-
-libstream_filter_dash_plugin_la-DOMHelper.lo: xml/DOMHelper.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-DOMHelper.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-DOMHelper.Tpo -c -o libstream_filter_dash_plugin_la-DOMHelper.lo `test -f 'xml/DOMHelper.cpp' || echo '$(srcdir)/'`xml/DOMHelper.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-DOMHelper.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-DOMHelper.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='xml/DOMHelper.cpp' object='libstream_filter_dash_plugin_la-DOMHelper.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-DOMHelper.lo `test -f 'xml/DOMHelper.cpp' || echo '$(srcdir)/'`xml/DOMHelper.cpp
-
-libstream_filter_dash_plugin_la-DOMParser.lo: xml/DOMParser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-DOMParser.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-DOMParser.Tpo -c -o libstream_filter_dash_plugin_la-DOMParser.lo `test -f 'xml/DOMParser.cpp' || echo '$(srcdir)/'`xml/DOMParser.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-DOMParser.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-DOMParser.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='xml/DOMParser.cpp' object='libstream_filter_dash_plugin_la-DOMParser.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-DOMParser.lo `test -f 'xml/DOMParser.cpp' || echo '$(srcdir)/'`xml/DOMParser.cpp
-
-libstream_filter_dash_plugin_la-Node.lo: xml/Node.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-Node.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-Node.Tpo -c -o libstream_filter_dash_plugin_la-Node.lo `test -f 'xml/Node.cpp' || echo '$(srcdir)/'`xml/Node.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-Node.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-Node.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='xml/Node.cpp' object='libstream_filter_dash_plugin_la-Node.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-Node.lo `test -f 'xml/Node.cpp' || echo '$(srcdir)/'`xml/Node.cpp
-
-libstream_filter_dash_plugin_la-dash.lo: dash.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-dash.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-dash.Tpo -c -o libstream_filter_dash_plugin_la-dash.lo `test -f 'dash.cpp' || echo '$(srcdir)/'`dash.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-dash.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-dash.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='dash.cpp' object='libstream_filter_dash_plugin_la-dash.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-dash.lo `test -f 'dash.cpp' || echo '$(srcdir)/'`dash.cpp
-
-libstream_filter_dash_plugin_la-DASHManager.lo: DASHManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libstream_filter_dash_plugin_la-DASHManager.lo -MD -MP -MF $(DEPDIR)/libstream_filter_dash_plugin_la-DASHManager.Tpo -c -o libstream_filter_dash_plugin_la-DASHManager.lo `test -f 'DASHManager.cpp' || echo '$(srcdir)/'`DASHManager.cpp
- at am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstream_filter_dash_plugin_la-DASHManager.Tpo $(DEPDIR)/libstream_filter_dash_plugin_la-DASHManager.Plo
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='DASHManager.cpp' object='libstream_filter_dash_plugin_la-DASHManager.lo' libtool=yes @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(AM_V_CXX at am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libstream_filter_dash_plugin_la_CPPFLAGS) $(CPPFLAGS) $(libstream_filter_dash_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libstream_filter_dash_plugin_la-DASHManager.lo `test -f 'DASHManager.cpp' || echo '$(srcdir)/'`DASHManager.cpp
-
-mostlyclean-libtool:
-	-rm -f *.lo
-
-clean-libtool:
-	-rm -rf .libs _libs
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
-	unique=`for i in $$list; do \
-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-	  done | \
-	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-	mkid -fID $$unique
-tags: TAGS
-
-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
-		$(TAGS_FILES) $(LISP)
-	set x; \
-	here=`pwd`; \
-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
-	unique=`for i in $$list; do \
-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-	  done | \
-	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-	shift; \
-	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
-	  test -n "$$unique" || unique=$$empty_fix; \
-	  if test $$# -gt 0; then \
-	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-	      "$$@" $$unique; \
-	  else \
-	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-	      $$unique; \
-	  fi; \
-	fi
-ctags: CTAGS
-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
-		$(TAGS_FILES) $(LISP)
-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
-	unique=`for i in $$list; do \
-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-	  done | \
-	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-	test -z "$(CTAGS_ARGS)$$unique" \
-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
-	     $$unique
-
-GTAGS:
-	here=`$(am__cd) $(top_builddir) && pwd` \
-	  && $(am__cd) $(top_srcdir) \
-	  && gtags -i $(GTAGS_ARGS) "$$here"
-
-distclean-tags:
-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
-distdir: $(DISTFILES)
-	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-	list='$(DISTFILES)'; \
-	  dist_files=`for file in $$list; do echo $$file; done | \
-	  sed -e "s|^$$srcdirstrip/||;t" \
-	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
-	case $$dist_files in \
-	  */*) $(MKDIR_P) `echo "$$dist_files" | \
-			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
-			   sort -u` ;; \
-	esac; \
-	for file in $$dist_files; do \
-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
-	  if test -d $$d/$$file; then \
-	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-	    if test -d "$(distdir)/$$file"; then \
-	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-	    fi; \
-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
-	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-	    fi; \
-	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
-	  else \
-	    test -f "$(distdir)/$$file" \
-	    || cp -p $$d/$$file "$(distdir)/$$file" \
-	    || exit 1; \
-	  fi; \
-	done
-check-am: all-am
-check: $(BUILT_SOURCES)
-	$(MAKE) $(AM_MAKEFLAGS) check-am
-all-am: Makefile $(LTLIBRARIES)
-installdirs:
-	for dir in "$(DESTDIR)$(libvlcdir)"; do \
-	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
-	done
-install: $(BUILT_SOURCES)
-	$(MAKE) $(AM_MAKEFLAGS) install-am
-install-exec: install-exec-am
-install-data: install-data-am
-uninstall: uninstall-am
-
-install-am: all-am
-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-am
-install-strip:
-	if test -z '$(STRIP)'; then \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	      install; \
-	else \
-	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
-	fi
-mostlyclean-generic:
-
-clean-generic:
-	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
-
-distclean-generic:
-	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-
-maintainer-clean-generic:
-	@echo "This command is intended for maintainers to use"
-	@echo "it deletes files that may require special tools to rebuild."
-	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
-clean: clean-am
-
-clean-am: clean-generic clean-libtool clean-libvlcLTLIBRARIES \
-	mostlyclean-am
-
-distclean: distclean-am
-	-rm -rf ./$(DEPDIR)
-	-rm -f Makefile
-distclean-am: clean-am distclean-compile distclean-generic \
-	distclean-tags
-
-dvi: dvi-am
-
-dvi-am:
-
-html: html-am
-
-html-am:
-
-info: info-am
-
-info-am:
-
-install-data-am: install-libvlcLTLIBRARIES
-
-install-dvi: install-dvi-am
-
-install-dvi-am:
-
-install-exec-am:
-
-install-html: install-html-am
-
-install-html-am:
-
-install-info: install-info-am
-
-install-info-am:
-
-install-man:
-
-install-pdf: install-pdf-am
-
-install-pdf-am:
-
-install-ps: install-ps-am
-
-install-ps-am:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-am
-	-rm -rf ./$(DEPDIR)
-	-rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-am
-
-mostlyclean-am: mostlyclean-compile mostlyclean-generic \
-	mostlyclean-libtool
-
-pdf: pdf-am
-
-pdf-am:
-
-ps: ps-am
-
-ps-am:
-
-uninstall-am: uninstall-libvlcLTLIBRARIES
-
-.MAKE: all check install install-am install-strip
-
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
-	clean-libtool clean-libvlcLTLIBRARIES ctags distclean \
-	distclean-compile distclean-generic distclean-libtool \
-	distclean-tags distdir dvi dvi-am html html-am info info-am \
-	install install-am install-data install-data-am install-dvi \
-	install-dvi-am install-exec install-exec-am install-html \
-	install-html-am install-info install-info-am \
-	install-libvlcLTLIBRARIES install-man install-pdf \
-	install-pdf-am install-ps install-ps-am install-strip \
-	installcheck installcheck-am installdirs maintainer-clean \
-	maintainer-clean-generic mostlyclean mostlyclean-compile \
-	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
-	tags uninstall uninstall-am uninstall-libvlcLTLIBRARIES
-
-
- at MAINTAINER_MODE_TRUE@$(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
- at MAINTAINER_MODE_TRUE@	$(AM_V_GEN)cd \$(top_srcdir) && \$(SHELL) modules/genmf $(dir)
-
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:

-- 
VLC media player packaging



More information about the pkg-multimedia-commits mailing list