Your message dated Thu, 09 Feb 2012 01:48:07 +0000
with message-id <e1rvj7h-00065s...@franck.debian.org>
and subject line Bug#657814: fixed in toonloop 2.1.18-3
has caused the Debian Bug report #657814,
regarding toonloop FTBFS on armel and armhf
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
657814: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=657814
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: toonloop
severity: serious
version: 2.0.6-2
tags: patch

Toonloop FTBFS on armel and armhf because clutter is built against opengl es there.

Patch is attatched, it's messy because the autotools regen stuff is in there, you might want to split that into a different patch or remove it and regen the autotools stuff at build time (the package may already do this but if it does it doesn't seem to clean up afterwards). The real changes are in configure.ac, src/Makefile.am and src/gui.h

This has been seen with both 2.0.6-2 (armhf buildd and local armel tests) and 2.1.18-1 (armel and armhf buildds)

Note that I have only tested if this makes the package build, I don't have an arm setup with a screen to test if the resulting package works sorry.
Description: fix build on architectures where clutter uses opengl es
 patch is noisy due to autotools regen sorry. the real changes are in
 configure.ac, src/Makefile.ac and 
Author: Peter Green <plugw...@p10link.net>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- toonloop-2.1.18.orig/Makefile.in
+++ toonloop-2.1.18/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -89,6 +89,12 @@ am__nobase_list = $(am__nobase_strip_set
 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)$(desktopdir)"
 DATA = $(desktop_DATA)
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
@@ -134,6 +140,8 @@ am__relativize = \
 DIST_ARCHIVES = $(distdir).tar.gz
 GZIP_ENV = --best
 distuninstallcheck_listfiles = find . -type f -print
+am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
+  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
 distcleancheck_listfiles = find . -type f -print
 ACLOCAL = @ACLOCAL@
 AMTAR = @AMTAR@
@@ -160,6 +168,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -297,7 +306,7 @@ EXTRA_DIST = $(desktop_DATA) NEWS CONTRI
 all: all-recursive
 
 .SUFFIXES:
-am--refresh:
+am--refresh: Makefile
 	@:
 $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 	@for dep in $?; do \
@@ -357,9 +366,7 @@ uninstall-desktopDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	test -n "$$files" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(desktopdir)" && rm -f $$files
+	dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir)
 
 # This directory's subdirectories are mostly independent; you can cd
 # into them and run `make' without going through this Makefile.
@@ -568,7 +575,7 @@ dist-gzip: distdir
 	$(am__remove_distdir)
 
 dist-bzip2: distdir
-	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
+	tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
 	$(am__remove_distdir)
 
 dist-lzma: distdir
@@ -576,7 +583,7 @@ dist-lzma: distdir
 	$(am__remove_distdir)
 
 dist-xz: distdir
-	tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
+	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
 	$(am__remove_distdir)
 
 dist-tarZ: distdir
@@ -626,6 +633,7 @@ distcheck: dist
 	  && am__cwd=`pwd` \
 	  && $(am__cd) $(distdir)/_build \
 	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
+	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
 	    $(DISTCHECK_CONFIGURE_FLAGS) \
 	  && $(MAKE) $(AM_MAKEFLAGS) \
 	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
@@ -654,8 +662,16 @@ distcheck: dist
 	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
 	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
 distuninstallcheck:
-	@$(am__cd) '$(distuninstallcheck_dir)' \
-	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
+	@test -n '$(distuninstallcheck_dir)' || { \
+	  echo 'ERROR: trying to run $@ with an empty' \
+	       '$$(distuninstallcheck_dir)' >&2; \
+	  exit 1; \
+	}; \
+	$(am__cd) '$(distuninstallcheck_dir)' || { \
+	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
+	  exit 1; \
+	}; \
+	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
 	   || { echo "ERROR: files left after uninstall:" ; \
 	        if test -n "$(DESTDIR)"; then \
 	          echo "  (check DESTDIR support)"; \
@@ -689,10 +705,15 @@ install-am: all-am
 
 installcheck: installcheck-recursive
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/aclocal.m4
+++ toonloop-2.1.18/aclocal.m4
@@ -1,7 +1,8 @@
-# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
+# generated automatically by aclocal 1.11.2 -*- Autoconf -*-
 
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
+# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
+# Inc.
 # This file 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.
@@ -179,12 +180,15 @@ else
 fi[]dnl
 ])# PKG_CHECK_MODULES
 
-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
+# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
+# Foundation, Inc.
 #
 # This file 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.
 
+# serial 1
+
 # AM_AUTOMAKE_VERSION(VERSION)
 # ----------------------------
 # Automake X.Y traces this macro to ensure aclocal.m4 has been
@@ -194,7 +198,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
 [am__api_version='1.11'
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.11.1], [],
+m4_if([$1], [1.11.2], [],
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 ])
 
@@ -210,19 +214,21 @@ m4_define([_AM_AUTOCONF_VERSION], [])
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.11.1])dnl
+[AM_AUTOMAKE_VERSION([1.11.2])dnl
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
-# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
 #
 # This file 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.
 
+# serial 1
+
 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
 # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
 # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
@@ -304,14 +310,14 @@ AC_CONFIG_COMMANDS_PRE(
 Usually this means the macro was only invoked conditionally.]])
 fi])])
 
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
-# Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
+# 2010, 2011 Free Software Foundation, Inc.
 #
 # This file 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.
 
-# serial 10
+# serial 12
 
 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
 # written in clear, in which case automake, when reading aclocal.m4,
@@ -351,6 +357,7 @@ AC_CACHE_CHECK([dependency style of $dep
   # instance it was reported that on HP-UX the gcc test will end up
   # making a dummy file named `D' -- because `-MD' means `put the output
   # in D'.
+  rm -rf conftest.dir
   mkdir conftest.dir
   # Copy depcomp to subdir because otherwise we won't find it if we're
   # using a relative directory.
@@ -415,7 +422,7 @@ AC_CACHE_CHECK([dependency style of $dep
 	break
       fi
       ;;
-    msvisualcpp | msvcmsys)
+    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
       # This compiler won't grok `-c -o', but also, the minuso test has
       # not run yet.  These depmodes are late enough in the game, and
       # so weak that their functioning should not be impacted.
@@ -480,10 +487,13 @@ AC_DEFUN([AM_DEP_TRACK],
 if test "x$enable_dependency_tracking" != xno; then
   am_depcomp="$ac_aux_dir/depcomp"
   AMDEPBACKSLASH='\'
+  am__nodep='_no'
 fi
 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 AC_SUBST([AMDEPBACKSLASH])dnl
 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
+AC_SUBST([am__nodep])dnl
+_AM_SUBST_NOTMAKE([am__nodep])dnl
 ])
 
 # Generate code to set up dependency tracking.              -*- Autoconf -*-
@@ -705,12 +715,15 @@ for _am_header in $config_headers :; do
 done
 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
 
-# Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
+# Inc.
 #
 # This file 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.
 
+# serial 1
+
 # AM_PROG_INSTALL_SH
 # ------------------
 # Define $install_sh.
@@ -842,12 +855,15 @@ else
 fi
 ])
 
-# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
+# Inc.
 #
 # This file 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.
 
+# serial 1
+
 # AM_PROG_MKDIR_P
 # ---------------
 # Check for `mkdir -p'.
@@ -870,13 +886,14 @@ esac
 
 # Helper functions for option handling.                     -*- Autoconf -*-
 
-# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
+# Foundation, Inc.
 #
 # This file 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.
 
-# serial 4
+# serial 5
 
 # _AM_MANGLE_OPTION(NAME)
 # -----------------------
@@ -884,13 +901,13 @@ AC_DEFUN([_AM_MANGLE_OPTION],
 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
 # _AM_SET_OPTION(NAME)
-# ------------------------------
+# --------------------
 # Set option NAME.  Presently that only means defining a flag for this option.
 AC_DEFUN([_AM_SET_OPTION],
 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
 # _AM_SET_OPTIONS(OPTIONS)
-# ----------------------------------
+# ------------------------
 # OPTIONS is a space-separated list of Automake options.
 AC_DEFUN([_AM_SET_OPTIONS],
 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
@@ -966,12 +983,14 @@ Check your system clock])
 fi
 AC_MSG_RESULT(yes)])
 
-# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
 #
 # This file 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.
 
+# serial 1
+
 # AM_PROG_INSTALL_STRIP
 # ---------------------
 # One issue with vendor `install' (even GNU) is that you can't
@@ -994,13 +1013,13 @@ fi
 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
-# Copyright (C) 2006, 2008  Free Software Foundation, Inc.
+# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
 #
 # This file 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.
 
-# serial 2
+# serial 3
 
 # _AM_SUBST_NOTMAKE(VARIABLE)
 # ---------------------------
@@ -1009,7 +1028,7 @@ AC_SUBST([INSTALL_STRIP_PROGRAM])])
 AC_DEFUN([_AM_SUBST_NOTMAKE])
 
 # AM_SUBST_NOTMAKE(VARIABLE)
-# ---------------------------
+# --------------------------
 # Public sister of _AM_SUBST_NOTMAKE.
 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 
--- toonloop-2.1.18.orig/configure.ac
+++ toonloop-2.1.18/configure.ac
@@ -76,6 +76,7 @@ if test "x${have_clutter}" = "xfalse" ;
 fi
 AC_SUBST([CLUTTER_LIBS])
 AC_SUBST([CLUTTER_CFLAGS])
+
 # Clutter depends on:
 # libjson-glib-dev and others
 
@@ -157,7 +158,36 @@ AC_MSG_NOTICE(Storing pixmaps files in $
 AC_DEFINE_UNQUOTED([DATADIR], "${DATADIR}", "Data dir")
 AC_DEFINE_UNQUOTED([PIXMAPS_DIR], "${PIXMAPS_DIR}", "Pixmaps dir")
 
-AC_SUBST(CXXFLAGS, " -O2 -Wall -Wextra -Werror -Wno-unused-result -Wfatal-errors") 
+#test to see whether clutter is build against opengl or opengl es
+AC_LANG(C++)
+AC_MSG_CHECKING([if we can include GL/glx.h and clutter/clutter.h together])
+#setup CXXFLAGS for clutter/opengl compatibility test
+export CXXFLAGS=$CLUTTER_CFLAGS
+AC_COMPILE_IFELSE(  
+  [AC_LANG_PROGRAM([[#include <GL/glx.h>
+  #include <clutter/clutter.h>]],[[]])],
+  [
+    AC_MSG_RESULT([yes])
+    AC_SUBST(CUSTOM_CFLAGS,"-dUSE_GLES2")
+  ],[
+    AC_MSG_RESULT([no])
+    AC_MSG_CHECKING([if we can include GLES2/gl2.h and clutter/clutter.h together])
+    AC_COMPILE_IFELSE(  
+      [AC_LANG_PROGRAM([[#include <GLES2/gl2.h>
+      #include <clutter/clutter.h>]],[[]])],
+      [
+        AC_MSG_RESULT([yes])
+        AC_SUBST(CUSTOM_CFLAGS,"-DUSE_GLES2")
+      ],[
+        AC_MSG_RESULT([no])
+        AC_MSG_ERROR(cannot find a clutter compatible opengl header)
+  ]
+)
+  ]
+)
+
+#this doesn't appear to actually get used....
+AC_SUBST(CXXFLAGS,"-O2 -Wall -Wextra -Werror -Wno-unused-result -Wfatal-errors")
 AC_CONFIG_FILES([
     Makefile
     src/Makefile
--- /dev/null
+++ toonloop-2.1.18/test.c
@@ -0,0 +1,2 @@
+#include <gl/gl.h>
+#include <clutter/clutter.h>
--- toonloop-2.1.18.orig/configure
+++ toonloop-2.1.18/configure
@@ -615,6 +615,7 @@ ac_subst_vars='am__EXEEXT_FALSE
 am__EXEEXT_TRUE
 LTLIBOBJS
 LIBOBJS
+CUSTOM_CFLAGS
 PIXMAPS_DIR
 DATADIR
 HELP2MAN
@@ -661,6 +662,7 @@ PACKAGE_VERSION_MAJOR
 am__fastdepCC_FALSE
 am__fastdepCC_TRUE
 CCDEPMODE
+am__nodep
 AMDEPBACKSLASH
 AMDEP_FALSE
 AMDEP_TRUE
@@ -11318,6 +11320,7 @@ fi
 if test "x$enable_dependency_tracking" != xno; then
   am_depcomp="$ac_aux_dir/depcomp"
   AMDEPBACKSLASH='\'
+  am__nodep='_no'
 fi
  if test "x$enable_dependency_tracking" != xno; then
   AMDEP_TRUE=
@@ -11402,6 +11405,7 @@ else
   # instance it was reported that on HP-UX the gcc test will end up
   # making a dummy file named `D' -- because `-MD' means `put the output
   # in D'.
+  rm -rf conftest.dir
   mkdir conftest.dir
   # Copy depcomp to subdir because otherwise we won't find it if we're
   # using a relative directory.
@@ -11461,7 +11465,7 @@ else
 	break
       fi
       ;;
-    msvisualcpp | msvcmsys)
+    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
       # This compiler won't grok `-c -o', but also, the minuso test has
       # not run yet.  These depmodes are late enough in the game, and
       # so weak that their functioning should not be impacted.
@@ -15031,6 +15035,7 @@ else
   # instance it was reported that on HP-UX the gcc test will end up
   # making a dummy file named `D' -- because `-MD' means `put the output
   # in D'.
+  rm -rf conftest.dir
   mkdir conftest.dir
   # Copy depcomp to subdir because otherwise we won't find it if we're
   # using a relative directory.
@@ -15090,7 +15095,7 @@ else
 	break
       fi
       ;;
-    msvisualcpp | msvcmsys)
+    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
       # This compiler won't grok `-c -o', but also, the minuso test has
       # not run yet.  These depmodes are late enough in the game, and
       # so weak that their functioning should not be impacted.
@@ -15729,7 +15734,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
 
 # save original flags
 SAVED_LIBS=$LIBS
-LIBS="$LIBS -lstk -lrtmidi"
+LIBS="$LIBS -lstk"
 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
  #include <stk/RtMidi.h>
@@ -15742,7 +15747,7 @@ RtMidiIn input
 }
 _ACEOF
 if ac_fn_cxx_try_link "$LINENO"; then :
-  STK_LIBS=" -lstk -lrtmidi -lrt -lm"
+  STK_LIBS=" -lstk -lrt -lm"
 
 else
   as_fn_error $? "libstk is not installed: alsa" "$LINENO" 5
@@ -16085,6 +16090,7 @@ if test "x${have_clutter}" = "xfalse" ;
 fi
 
 
+
 # Clutter depends on:
 # libjson-glib-dev and others
 
@@ -18054,7 +18060,77 @@ cat >>confdefs.h <<_ACEOF
 _ACEOF
 
 
-CXXFLAGS=" -O2 -Wall -Wextra -Werror -Wno-unused-result -Wfatal-errors"
+#test to see whether clutter is build against opengl or opengl es
+ac_ext=cpp
+ac_cpp='$CXXCPP $CPPFLAGS'
+ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can include GL/glx.h and clutter/clutter.h together" >&5
+$as_echo_n "checking if we can include GL/glx.h and clutter/clutter.h together... " >&6; }
+#setup CXXFLAGS for clutter/opengl compatibility test
+export CXXFLAGS=$CLUTTER_CFLAGS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <GL/glx.h>
+  #include <clutter/clutter.h>
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_cxx_try_compile "$LINENO"; then :
+
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+    CUSTOM_CFLAGS="-dUSE_GLES2"
+
+
+else
+
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+    { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can include GLES2/gl2.h and clutter/clutter.h together" >&5
+$as_echo_n "checking if we can include GLES2/gl2.h and clutter/clutter.h together... " >&6; }
+    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+#include <GLES2/gl2.h>
+      #include <clutter/clutter.h>
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_cxx_try_compile "$LINENO"; then :
+
+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+        CUSTOM_CFLAGS="-DUSE_GLES2"
+
+
+else
+
+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+        as_fn_error $? "cannot find a clutter compatible opengl header" "$LINENO" 5
+
+
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+
+
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+
+#this doesn't appear to actually get used....
+CXXFLAGS="-O2 -Wall -Wextra -Werror -Wno-unused-result -Wfatal-errors"
 
 ac_config_files="$ac_config_files Makefile src/Makefile src/doxyfile src/shaders/Makefile man/Makefile tests/Makefile pixmaps/Makefile completion/Makefile presets/Makefile"
 
--- toonloop-2.1.18.orig/completion/Makefile.in
+++ toonloop-2.1.18/completion/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -78,6 +78,12 @@ am__nobase_list = $(am__nobase_strip_set
 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)$(completiondir)"
 DATA = $(dist_completion_DATA)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -106,6 +112,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -293,9 +300,7 @@ uninstall-dist_completionDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(dist_completion_DATA)'; test -n "$(completiondir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	test -n "$$files" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(completiondir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(completiondir)" && rm -f $$files
+	dir='$(DESTDIR)$(completiondir)'; $(am__uninstall_files_from_dir)
 tags: TAGS
 TAGS:
 
@@ -350,10 +355,15 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/src/gui.h
+++ toonloop-2.1.18/src/gui.h
@@ -21,7 +21,12 @@
 #ifndef __GUI_H__
 #define __GUI_H__
 
-#include <GL/glx.h>
+#ifdef USE_GLES2
+  #include <GLES2/gl2.h>
+#else
+  #include <GL/glx.h>
+#endif
+
 #include <clutter/clutter.h>
 #include <tr1/memory> // for shared_ptr
 #include <vector>
--- toonloop-2.1.18.orig/src/Makefile.in
+++ toonloop-2.1.18/src/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -175,6 +175,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -384,7 +385,8 @@ toonloop_CXXFLAGS = \
 	$(RAW1394_CFLAGS) \
 	$(AVC1394_CFLAGS) \
 	$(STK_CXXFLAGS) \
-	$(LIBXML_XFLAGS)
+	$(LIBXML_XFLAGS) \
+	$(CUSTOM_CFLAGS)
 
 toonloop_LDADD = \
 	$(BOOST_FILESYSTEM_LIB) \
@@ -440,10 +442,8 @@ $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 $(am__aclocal_m4_deps):
 
 config.h: stamp-h1
-	@if test ! -f $@; then \
-	  rm -f stamp-h1; \
-	  $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
-	else :; fi
+	@if test ! -f $@; then rm -f stamp-h1; else :; fi
+	@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
 
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
 	@rm -f stamp-h1
@@ -1169,10 +1169,15 @@ install-am: all-am
 
 installcheck: installcheck-recursive
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/src/Makefile.am
+++ toonloop-2.1.18/src/Makefile.am
@@ -86,7 +86,8 @@ toonloop_CXXFLAGS = \
 	$(RAW1394_CFLAGS) \
 	$(AVC1394_CFLAGS) \
 	$(STK_CXXFLAGS) \
-	$(LIBXML_XFLAGS)
+	$(LIBXML_XFLAGS) \
+	$(CUSTOM_CFLAGS)
  
 toonloop_LDADD = \
 	$(BOOST_FILESYSTEM_LIB) \
--- toonloop-2.1.18.orig/src/shaders/Makefile.in
+++ toonloop-2.1.18/src/shaders/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -77,6 +77,12 @@ am__nobase_list = $(am__nobase_strip_set
 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)$(shadersdir)"
 DATA = $(shaders_DATA)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -105,6 +111,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -293,9 +300,7 @@ uninstall-shadersDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(shaders_DATA)'; test -n "$(shadersdir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	test -n "$$files" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(shadersdir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(shadersdir)" && rm -f $$files
+	dir='$(DESTDIR)$(shadersdir)'; $(am__uninstall_files_from_dir)
 tags: TAGS
 TAGS:
 
@@ -350,10 +355,15 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/presets/Makefile.in
+++ toonloop-2.1.18/presets/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -77,6 +77,12 @@ am__nobase_list = $(am__nobase_strip_set
 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)$(presetsdir)"
 DATA = $(presets_DATA)
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
@@ -105,6 +111,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -293,9 +300,7 @@ uninstall-presetsDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(presets_DATA)'; test -n "$(presetsdir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	test -n "$$files" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(presetsdir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(presetsdir)" && rm -f $$files
+	dir='$(DESTDIR)$(presetsdir)'; $(am__uninstall_files_from_dir)
 tags: TAGS
 TAGS:
 
@@ -350,10 +355,15 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/pixmaps/Makefile.in
+++ toonloop-2.1.18/pixmaps/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -77,6 +77,12 @@ am__nobase_list = $(am__nobase_strip_set
 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)$(desktopicondir)" \
 	"$(DESTDIR)$(pixmapsdir)"
 DATA = $(desktopicon_DATA) $(pixmaps_DATA)
@@ -106,6 +112,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -296,9 +303,7 @@ uninstall-desktopiconDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(desktopicon_DATA)'; test -n "$(desktopicondir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	test -n "$$files" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(desktopicondir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(desktopicondir)" && rm -f $$files
+	dir='$(DESTDIR)$(desktopicondir)'; $(am__uninstall_files_from_dir)
 install-pixmapsDATA: $(pixmaps_DATA)
 	@$(NORMAL_INSTALL)
 	test -z "$(pixmapsdir)" || $(MKDIR_P) "$(DESTDIR)$(pixmapsdir)"
@@ -316,9 +321,7 @@ uninstall-pixmapsDATA:
 	@$(NORMAL_UNINSTALL)
 	@list='$(pixmaps_DATA)'; test -n "$(pixmapsdir)" || list=; \
 	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-	test -n "$$files" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(pixmapsdir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(pixmapsdir)" && rm -f $$files
+	dir='$(DESTDIR)$(pixmapsdir)'; $(am__uninstall_files_from_dir)
 tags: TAGS
 TAGS:
 
@@ -373,10 +376,15 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/tests/Makefile.in
+++ toonloop-2.1.18/tests/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -199,6 +199,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -771,14 +772,15 @@ check-TESTS: $(TESTS)
 	  fi; \
 	  dashes=`echo "$$dashes" | sed s/./=/g`; \
 	  if test "$$failed" -eq 0; then \
-	    echo "$$grn$$dashes"; \
+	    col="$$grn"; \
 	  else \
-	    echo "$$red$$dashes"; \
+	    col="$$red"; \
 	  fi; \
-	  echo "$$banner"; \
-	  test -z "$$skipped" || echo "$$skipped"; \
-	  test -z "$$report" || echo "$$report"; \
-	  echo "$$dashes$$std"; \
+	  echo "$${col}$$dashes$${std}"; \
+	  echo "$${col}$$banner$${std}"; \
+	  test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
+	  test -z "$$report" || echo "$${col}$$report$${std}"; \
+	  echo "$${col}$$dashes$${std}"; \
 	  test "$$failed" -eq 0; \
 	else :; fi
 
@@ -827,10 +829,15 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/man/Makefile.in
+++ toonloop-2.1.18/man/Makefile.in
@@ -1,9 +1,9 @@
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
+# Makefile.in generated by automake 1.11.2 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
+# 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.
@@ -76,6 +76,12 @@ am__nobase_list = $(am__nobase_strip_set
 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; }; \
+  }
 man1dir = $(mandir)/man1
 am__installdirs = "$(DESTDIR)$(man1dir)"
 NROFF = nroff
@@ -106,6 +112,7 @@ CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
 CLUTTER_LIBS = @CLUTTER_LIBS@
 CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CUSTOM_CFLAGS = @CUSTOM_CFLAGS@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
 CXXDEPMODE = @CXXDEPMODE@
@@ -315,9 +322,7 @@ uninstall-man1:
 	  sed -n '/\.1[a-z]*$$/p'; \
 	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
 	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
-	test -z "$$files" || { \
-	  echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
-	  cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
+	dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
 tags: TAGS
 TAGS:
 
@@ -385,10 +390,15 @@ install-am: all-am
 
 installcheck: installcheck-am
 install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+	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:
--- toonloop-2.1.18.orig/man/toonloop.1
+++ toonloop-2.1.18/man/toonloop.1
@@ -1,7 +1,7 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.40.4.
-.TH TOONLOOP "1" "November 2011" "toonloop 2.1.17" "User Commands"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.40.5.
+.TH ERROR "1" "January 2012" "ERROR (std::logic_error): basic_string::_S_construct null not valid" "User Commands"
 .SH NAME
-toonloop \- The Toonloop Live Animation Performance Tool
+ERROR \- The Toonloop Live Animation Performance Tool
 .SH SYNOPSIS
 toonloop [options]
 .SH DESCRIPTION
@@ -10,109 +10,8 @@ Toonloop is a live stop motion animation
 Toonloop is a great tool for teaching new medias to children. It can also be used as a professional software for movie creators, though it is mainly intended to be used in a live kiosk of show. In the left window, you can see what is seen by the live camera. In the right window, it is the result of the stop motion loop. To add an image to the current clip, simply press the space bar.
 
 Toonloop can be controlled using MIDI input, or the Open Sound Control protocol. (OSC) Images are saved to the disk in the JPEG format, and the clips are saved using the photo-JPEG video codec. (using mencoder)
-.SH OPTIONS
-.TP
-\fB\-h\fR [ \fB\-\-help\fR ]
-Show this help message and exit
-.TP
-\fB\-H\fR [ \fB\-\-project\-home\fR ] arg (=~/Documents/toonloop/default)
-Path to the saved files
-.TP
-\fB\-\-version\fR
-Show program's version number and exit
-.TP
-\fB\-v\fR [ \fB\-\-verbose\fR ]
-Enables a verbose output
-.TP
-\fB\-D\fR [ \fB\-\-display\fR ] arg (=:1)
-Sets the X11 display name
-.TP
-\fB\-\-playhead\-fps\fR arg (=12)
-Sets the initial playback rate of clips
-.TP
-\fB\-f\fR [ \fB\-\-fullscreen\fR ]
-Runs in fullscreen mode
-.TP
-\fB\-d\fR [ \fB\-\-video\-source\fR ] arg (=/dev/video0)
-Sets the video source or device. Use
-"test" for color bars. Use "x" to
-capture the screen. Use "dv" for DV
-capture
-.TP
-\fB\-m\fR [ \fB\-\-midi\-input\fR ] arg
-Sets the input MIDI device number to
-open
-.TP
-\fB\-L\fR [ \fB\-\-list\-midi\-inputs\fR ]
-Lists MIDI inputs devices and exits
-.TP
-\fB\-l\fR [ \fB\-\-list\-cameras\fR ]
-Lists connected cameras and exits
-.TP
-\fB\-p\fR [ \fB\-\-osc\-receive\-port\fR ] arg
-Sets the listening OSC port
-.TP
-\fB\-P\fR [ \fB\-\-osc\-send\-port\fR ] arg
-Sets the port to send OSC messages to
-.TP
-\fB\-a\fR [ \fB\-\-osc\-send\-addr\fR ] arg (=localhost)
-Sets the IP address to send OSC
-messages to
-.TP
-\fB\-M\fR [ \fB\-\-enable\-mouse\-controls\fR ]
-Enables simple controls with the mouse.
-.TP
-\fB\-\-width\fR arg (=640)
-Image capture width
-.TP
-\fB\-\-height\fR arg (=480)
-Image capture height
-.TP
-\fB\-\-max\-images\-per\-clip\fR arg (=0)
-If not zero, sets a maximum number of
-images per clip. The first image is
-then removed when one is added.
-.TP
-\fB\-i\fR [ \fB\-\-enable\-intervalometer\fR ]
-Enables the intervalometer for the
-default clip at startup.
-.TP
-\fB\-I\fR [ \fB\-\-intervalometer\-rate\fR ] arg (=10)
-Sets the default intervalometer rate.
-.TP
-\fB\-\-layout\fR arg (=0)
-Sets the layout number.
-.TP
-\fB\-\-remove\-deleted\-images\fR
-Enables the removal of useless image
-files.
-.TP
-\fB\-S\fR [ \fB\-\-enable\-shaders\fR ]
-Enables GLSL shader effects.
-.TP
-\fB\-I\fR [ \fB\-\-enable\-info\-window\fR ]
-Enables a window for information text.
-.TP
-\fB\-\-image\-on\-top\fR arg
-Shows an unscaled image on top of all.
-.TP
-\fB\-\-enable\-preview\-window\fR
-Enables a preview of the live camera
-feed.
-.TP
-\fB\-\-list\-properties\fR
-Prints a list of the Toonloop
-properties and exit.
-.TP
-\fB\-\-no\-load\-project\fR
-Disables project file loading.
-.TP
-\fB\-\-auto\-save\-project\fR
-Enables project auto saving.
-.TP
-\fB\-C\fR [ \fB\-\-continue\-when\-choose\fR ]
-When a clip is chosen, continue where
-it was instead of going to beginning.
+.PP
+ERROR (std::logic_error): basic_string::_S_construct null not valid
 .SH EXAMPLES
 Choosing the video input can be tricky. The name of the GStreamer video source element is guessed from the \-\-video-source option. (its short form is \-d) If it's "/dev/video0" or "/dev/video1", Toonloop will use the v4l2src element. (a Video4Linux 2 video device) 
 

--- End Message ---
--- Begin Message ---
Source: toonloop
Source-Version: 2.1.18-3

We believe that the bug you reported is fixed in the latest version of
toonloop, which is due to be installed in the Debian FTP archive:

toonloop_2.1.18-3.debian.tar.gz
  to main/t/toonloop/toonloop_2.1.18-3.debian.tar.gz
toonloop_2.1.18-3.dsc
  to main/t/toonloop/toonloop_2.1.18-3.dsc
toonloop_2.1.18-3_amd64.deb
  to main/t/toonloop/toonloop_2.1.18-3_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 657...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Alessio Treglia <ales...@debian.org> (supplier of updated toonloop package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Thu, 09 Feb 2012 02:24:10 +0100
Source: toonloop
Binary: toonloop
Architecture: source amd64
Version: 2.1.18-3
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
<pkg-multimedia-maintain...@lists.alioth.debian.org>
Changed-By: Alessio Treglia <ales...@debian.org>
Description: 
 toonloop   - live animation editor
Closes: 657814
Changes: 
 toonloop (2.1.18-3) unstable; urgency=low
 .
   * Team upload.
   * Add patch from Peter Green to fix FTBFS on those architectures where
     clutter uses OpenGL ES. (Closes: #657814)
Checksums-Sha1: 
 618ec02ef395522ea4a4bc7dfb35d4eb0f9e69a7 2660 toonloop_2.1.18-3.dsc
 b55d2f8a5236def8557364ed1249b8faec72ff50 8943 toonloop_2.1.18-3.debian.tar.gz
 f9caac5f11b918a6017907633ffafa4a80a89ed1 377130 toonloop_2.1.18-3_amd64.deb
Checksums-Sha256: 
 6a15fa8944b313f90c7fed49dc49ad28438e4b325ded693f0738e40858d808de 2660 
toonloop_2.1.18-3.dsc
 057b54813f426d819cd24ffabe3461fc378004e5b7d3ee3163276f0fdf1ce76d 8943 
toonloop_2.1.18-3.debian.tar.gz
 3feab8a7424b0d604114c24a546c7a03b201dc1b2580bc2980423fc880407f48 377130 
toonloop_2.1.18-3_amd64.deb
Files: 
 eac5bd1a0f224473d0b3ae9bc626452c 2660 video extra toonloop_2.1.18-3.dsc
 cf614a0e45aa592f3e3c8d10c562719b 8943 video extra 
toonloop_2.1.18-3.debian.tar.gz
 ffc866376acd377751ff4768b3822a20 377130 video extra toonloop_2.1.18-3_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCgAGBQJPMyM0AAoJEOikiuUxHXZac1cQAKr6lOChYJEoEamSnSi/TjsV
duEQeOqCGzRglz2kdbCdKfHICi1J7sRDbnjFjUdDkzmH4PVuS9r0nX+kBfqhlQkQ
Ud01D9mr86WWSgJnMhIJpSDWuTeAf0Vfc4qri00Dg4JSY1zCflmcuz7lIJPignt6
b5Wd9rT7FwJcX+lD+bbqgxE4OSEpTyT3WpuVQMDdL4qY4N2IpUv1BHmeVXF1u5vm
+I7dqQyIRFBuOWx6RIe4HFH+cbfmFoCELeYeuOY+xvI6Gpg9lNLjwv493VOTvg/k
bO60vbPBLvL0ldTTHx/GYgA9qMS168tONYRggB1RQjrjGdC2X4QMoEwbp23T409d
Dj9z2lsFqMftR6MQE8AM9aBoFDhp96DCGa0BZbBPuNyADzX5g81Jhu+yYsfAh5/K
sMLK2k/OjLpW9ZFtfA6woRPpMTteF+KvuP6+iDeRw7C/4KN09tQnJpAE8NpQCV0D
rObBkCd1CgQUA237ZIDCF3JQqf5eT0Rr7XTxNmuxk/trFtMxFsmmgHWb+wl/R0Ti
JoK+oOBE8l4y5DBhrKgdpXvSMb4RAUt9WwEXzQtfWoy2x5IVV/Q/QjxqE+VHoBQm
Be0PEFLv7Ky711C8pKJtT3uoPjNVyJYjj4Zoo7NdZ+mfhhyZE2blOdxJtVxGDGGp
Ndv3c6/FEVFW+1cRMLFk
=5Hy5
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to