Merge lp:~noskcaj/ubuntu/utopic/clutter-gst-2.0/2.0.12 into lp:ubuntu/utopic/clutter-gst-2.0

Proposed by Jackson Doak
Status: Rejected
Rejected by: Sebastien Bacher
Proposed branch: lp:~noskcaj/ubuntu/utopic/clutter-gst-2.0/2.0.12
Merge into: lp:ubuntu/utopic/clutter-gst-2.0
Diff against target: 1258 lines (+374/-273)
27 files modified
NEWS (+15/-0)
aclocal.m4 (+217/-161)
clutter-gst/Makefile.am (+1/-1)
clutter-gst/Makefile.in (+1/-1)
clutter-gst/clutter-gst-version.h (+3/-3)
configure (+17/-16)
configure.ac (+3/-3)
debian/changelog (+7/-0)
debian/control (+6/-5)
debian/control.in (+6/-5)
doc/reference/Makefile.in (+2/-0)
doc/reference/html/ClutterGstPlayer.html (+2/-2)
doc/reference/html/ClutterGstVideoSink.html (+2/-2)
doc/reference/html/ClutterGstVideoTexture.html (+2/-2)
doc/reference/html/ch01.html (+4/-4)
doc/reference/html/ch02.html (+3/-3)
doc/reference/html/clutter-gst-Utilities.html (+2/-2)
doc/reference/html/clutter-gst-Versioning-Macros.html (+5/-5)
doc/reference/html/clutter-gst.devhelp2 (+1/-1)
doc/reference/html/index.html (+5/-5)
doc/reference/html/license.html (+3/-3)
doc/reference/version.xml (+1/-1)
examples/Makefile.am (+6/-6)
examples/Makefile.in (+19/-13)
gtk-doc.make (+2/-0)
tests/Makefile.am (+8/-8)
tests/Makefile.in (+31/-21)
To merge this branch: bzr merge lp:~noskcaj/ubuntu/utopic/clutter-gst-2.0/2.0.12
Reviewer Review Type Date Requested Status
Ubuntu Development Team Pending
Review via email: mp+224948@code.launchpad.net

Description of the change

New upstream bugfix release

To post a comment you must log in.
Revision history for this message
Sebastien Bacher (seb128) wrote :

Thanks, that version got synced from Debian, https://launchpad.net/ubuntu/+source/clutter-gst-2.0/2.0.12-1

Unmerged revisions

11. By Jackson Doak

* New upstream release.
* debian/control: Bump gstreamer versions to >= 1.2

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'NEWS'
2--- NEWS 2014-04-14 20:13:16 +0000
3+++ NEWS 2014-06-30 02:31:21 +0000
4@@ -1,3 +1,18 @@
5+clutter-gst 2.0.12 (1/06/2014)
6+===============================================================================
7+
8+List of changes since 2.0.10
9+
10+ o Depend on GStreamer 2.0
11+
12+ o Fix build issues
13+
14+
15+Many Thanks to:
16+
17+ Antoine Jacoutot
18+ Ryan Lortie
19+
20 clutter-gst 2.0.10 (10/01/2014)
21 ===============================================================================
22
23
24=== modified file 'aclocal.m4'
25--- aclocal.m4 2014-04-14 20:13:16 +0000
26+++ aclocal.m4 2014-06-30 02:31:21 +0000
27@@ -20,6 +20,221 @@
28 If you have problems, you may need to regenerate the build system entirely.
29 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
30
31+# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
32+# serial 1 (pkg-config-0.24)
33+#
34+# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
35+#
36+# This program is free software; you can redistribute it and/or modify
37+# it under the terms of the GNU General Public License as published by
38+# the Free Software Foundation; either version 2 of the License, or
39+# (at your option) any later version.
40+#
41+# This program is distributed in the hope that it will be useful, but
42+# WITHOUT ANY WARRANTY; without even the implied warranty of
43+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
44+# General Public License for more details.
45+#
46+# You should have received a copy of the GNU General Public License
47+# along with this program; if not, write to the Free Software
48+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
49+#
50+# As a special exception to the GNU General Public License, if you
51+# distribute this file as part of a program that contains a
52+# configuration script generated by Autoconf, you may include it under
53+# the same distribution terms that you use for the rest of that program.
54+
55+# PKG_PROG_PKG_CONFIG([MIN-VERSION])
56+# ----------------------------------
57+AC_DEFUN([PKG_PROG_PKG_CONFIG],
58+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
59+m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
60+m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
61+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
62+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
63+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
64+
65+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
66+ AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
67+fi
68+if test -n "$PKG_CONFIG"; then
69+ _pkg_min_version=m4_default([$1], [0.9.0])
70+ AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
71+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
72+ AC_MSG_RESULT([yes])
73+ else
74+ AC_MSG_RESULT([no])
75+ PKG_CONFIG=""
76+ fi
77+fi[]dnl
78+])# PKG_PROG_PKG_CONFIG
79+
80+# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
81+#
82+# Check to see whether a particular set of modules exists. Similar
83+# to PKG_CHECK_MODULES(), but does not set variables or print errors.
84+#
85+# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
86+# only at the first occurence in configure.ac, so if the first place
87+# it's called might be skipped (such as if it is within an "if", you
88+# have to call PKG_CHECK_EXISTS manually
89+# --------------------------------------------------------------
90+AC_DEFUN([PKG_CHECK_EXISTS],
91+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
92+if test -n "$PKG_CONFIG" && \
93+ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
94+ m4_default([$2], [:])
95+m4_ifvaln([$3], [else
96+ $3])dnl
97+fi])
98+
99+# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
100+# ---------------------------------------------
101+m4_define([_PKG_CONFIG],
102+[if test -n "$$1"; then
103+ pkg_cv_[]$1="$$1"
104+ elif test -n "$PKG_CONFIG"; then
105+ PKG_CHECK_EXISTS([$3],
106+ [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
107+ test "x$?" != "x0" && pkg_failed=yes ],
108+ [pkg_failed=yes])
109+ else
110+ pkg_failed=untried
111+fi[]dnl
112+])# _PKG_CONFIG
113+
114+# _PKG_SHORT_ERRORS_SUPPORTED
115+# -----------------------------
116+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
117+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
118+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
119+ _pkg_short_errors_supported=yes
120+else
121+ _pkg_short_errors_supported=no
122+fi[]dnl
123+])# _PKG_SHORT_ERRORS_SUPPORTED
124+
125+
126+# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
127+# [ACTION-IF-NOT-FOUND])
128+#
129+#
130+# Note that if there is a possibility the first call to
131+# PKG_CHECK_MODULES might not happen, you should be sure to include an
132+# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
133+#
134+#
135+# --------------------------------------------------------------
136+AC_DEFUN([PKG_CHECK_MODULES],
137+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
138+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
139+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
140+
141+pkg_failed=no
142+AC_MSG_CHECKING([for $1])
143+
144+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
145+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
146+
147+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
148+and $1[]_LIBS to avoid the need to call pkg-config.
149+See the pkg-config man page for more details.])
150+
151+if test $pkg_failed = yes; then
152+ AC_MSG_RESULT([no])
153+ _PKG_SHORT_ERRORS_SUPPORTED
154+ if test $_pkg_short_errors_supported = yes; then
155+ $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
156+ else
157+ $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
158+ fi
159+ # Put the nasty error message in config.log where it belongs
160+ echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
161+
162+ m4_default([$4], [AC_MSG_ERROR(
163+[Package requirements ($2) were not met:
164+
165+$$1_PKG_ERRORS
166+
167+Consider adjusting the PKG_CONFIG_PATH environment variable if you
168+installed software in a non-standard prefix.
169+
170+_PKG_TEXT])[]dnl
171+ ])
172+elif test $pkg_failed = untried; then
173+ AC_MSG_RESULT([no])
174+ m4_default([$4], [AC_MSG_FAILURE(
175+[The pkg-config script could not be found or is too old. Make sure it
176+is in your PATH or set the PKG_CONFIG environment variable to the full
177+path to pkg-config.
178+
179+_PKG_TEXT
180+
181+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
182+ ])
183+else
184+ $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
185+ $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
186+ AC_MSG_RESULT([yes])
187+ $3
188+fi[]dnl
189+])# PKG_CHECK_MODULES
190+
191+
192+# PKG_INSTALLDIR(DIRECTORY)
193+# -------------------------
194+# Substitutes the variable pkgconfigdir as the location where a module
195+# should install pkg-config .pc files. By default the directory is
196+# $libdir/pkgconfig, but the default can be changed by passing
197+# DIRECTORY. The user can override through the --with-pkgconfigdir
198+# parameter.
199+AC_DEFUN([PKG_INSTALLDIR],
200+[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
201+m4_pushdef([pkg_description],
202+ [pkg-config installation directory @<:@]pkg_default[@:>@])
203+AC_ARG_WITH([pkgconfigdir],
204+ [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
205+ [with_pkgconfigdir=]pkg_default)
206+AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
207+m4_popdef([pkg_default])
208+m4_popdef([pkg_description])
209+]) dnl PKG_INSTALLDIR
210+
211+
212+# PKG_NOARCH_INSTALLDIR(DIRECTORY)
213+# -------------------------
214+# Substitutes the variable noarch_pkgconfigdir as the location where a
215+# module should install arch-independent pkg-config .pc files. By
216+# default the directory is $datadir/pkgconfig, but the default can be
217+# changed by passing DIRECTORY. The user can override through the
218+# --with-noarch-pkgconfigdir parameter.
219+AC_DEFUN([PKG_NOARCH_INSTALLDIR],
220+[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
221+m4_pushdef([pkg_description],
222+ [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
223+AC_ARG_WITH([noarch-pkgconfigdir],
224+ [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
225+ [with_noarch_pkgconfigdir=]pkg_default)
226+AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
227+m4_popdef([pkg_default])
228+m4_popdef([pkg_description])
229+]) dnl PKG_NOARCH_INSTALLDIR
230+
231+
232+# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
233+# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
234+# -------------------------------------------
235+# Retrieves the value of the pkg-config variable for the given module.
236+AC_DEFUN([PKG_CHECK_VAR],
237+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
238+AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
239+
240+_PKG_CONFIG([$1], [variable="][$3]["], [$2])
241+AS_VAR_COPY([$1], [pkg_cv_][$1])
242+
243+AS_VAR_IF([$1], [""], [$5], [$4])dnl
244+])# PKG_CHECK_VAR
245+
246 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
247 #
248 # This file is free software; the Free Software Foundation
249@@ -573,7 +788,8 @@
250 END
251 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
252 fi
253-fi])
254+fi
255+])
256
257 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
258 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
259@@ -1147,166 +1363,6 @@
260 AC_SUBST([am__untar])
261 ]) # _AM_PROG_TAR
262
263-# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
264-# serial 1 (pkg-config-0.24)
265-#
266-# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
267-#
268-# This program is free software; you can redistribute it and/or modify
269-# it under the terms of the GNU General Public License as published by
270-# the Free Software Foundation; either version 2 of the License, or
271-# (at your option) any later version.
272-#
273-# This program is distributed in the hope that it will be useful, but
274-# WITHOUT ANY WARRANTY; without even the implied warranty of
275-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
276-# General Public License for more details.
277-#
278-# You should have received a copy of the GNU General Public License
279-# along with this program; if not, write to the Free Software
280-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
281-#
282-# As a special exception to the GNU General Public License, if you
283-# distribute this file as part of a program that contains a
284-# configuration script generated by Autoconf, you may include it under
285-# the same distribution terms that you use for the rest of that program.
286-
287-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
288-# ----------------------------------
289-AC_DEFUN([PKG_PROG_PKG_CONFIG],
290-[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
291-m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
292-m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
293-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
294-AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
295-AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
296-
297-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
298- AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
299-fi
300-if test -n "$PKG_CONFIG"; then
301- _pkg_min_version=m4_default([$1], [0.9.0])
302- AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
303- if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
304- AC_MSG_RESULT([yes])
305- else
306- AC_MSG_RESULT([no])
307- PKG_CONFIG=""
308- fi
309-fi[]dnl
310-])# PKG_PROG_PKG_CONFIG
311-
312-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
313-#
314-# Check to see whether a particular set of modules exists. Similar
315-# to PKG_CHECK_MODULES(), but does not set variables or print errors.
316-#
317-# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
318-# only at the first occurence in configure.ac, so if the first place
319-# it's called might be skipped (such as if it is within an "if", you
320-# have to call PKG_CHECK_EXISTS manually
321-# --------------------------------------------------------------
322-AC_DEFUN([PKG_CHECK_EXISTS],
323-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
324-if test -n "$PKG_CONFIG" && \
325- AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
326- m4_default([$2], [:])
327-m4_ifvaln([$3], [else
328- $3])dnl
329-fi])
330-
331-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
332-# ---------------------------------------------
333-m4_define([_PKG_CONFIG],
334-[if test -n "$$1"; then
335- pkg_cv_[]$1="$$1"
336- elif test -n "$PKG_CONFIG"; then
337- PKG_CHECK_EXISTS([$3],
338- [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
339- test "x$?" != "x0" && pkg_failed=yes ],
340- [pkg_failed=yes])
341- else
342- pkg_failed=untried
343-fi[]dnl
344-])# _PKG_CONFIG
345-
346-# _PKG_SHORT_ERRORS_SUPPORTED
347-# -----------------------------
348-AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
349-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
350-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
351- _pkg_short_errors_supported=yes
352-else
353- _pkg_short_errors_supported=no
354-fi[]dnl
355-])# _PKG_SHORT_ERRORS_SUPPORTED
356-
357-
358-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
359-# [ACTION-IF-NOT-FOUND])
360-#
361-#
362-# Note that if there is a possibility the first call to
363-# PKG_CHECK_MODULES might not happen, you should be sure to include an
364-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
365-#
366-#
367-# --------------------------------------------------------------
368-AC_DEFUN([PKG_CHECK_MODULES],
369-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
370-AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
371-AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
372-
373-pkg_failed=no
374-AC_MSG_CHECKING([for $1])
375-
376-_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
377-_PKG_CONFIG([$1][_LIBS], [libs], [$2])
378-
379-m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
380-and $1[]_LIBS to avoid the need to call pkg-config.
381-See the pkg-config man page for more details.])
382-
383-if test $pkg_failed = yes; then
384- AC_MSG_RESULT([no])
385- _PKG_SHORT_ERRORS_SUPPORTED
386- if test $_pkg_short_errors_supported = yes; then
387- $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
388- else
389- $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
390- fi
391- # Put the nasty error message in config.log where it belongs
392- echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
393-
394- m4_default([$4], [AC_MSG_ERROR(
395-[Package requirements ($2) were not met:
396-
397-$$1_PKG_ERRORS
398-
399-Consider adjusting the PKG_CONFIG_PATH environment variable if you
400-installed software in a non-standard prefix.
401-
402-_PKG_TEXT])[]dnl
403- ])
404-elif test $pkg_failed = untried; then
405- AC_MSG_RESULT([no])
406- m4_default([$4], [AC_MSG_FAILURE(
407-[The pkg-config script could not be found or is too old. Make sure it
408-is in your PATH or set the PKG_CONFIG environment variable to the full
409-path to pkg-config.
410-
411-_PKG_TEXT
412-
413-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
414- ])
415-else
416- $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
417- $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
418- AC_MSG_RESULT([yes])
419- $3
420-fi[]dnl
421-])# PKG_CHECK_MODULES
422-
423 m4_include([build/autotools/as-am-really-silent.m4])
424 m4_include([build/autotools/as-compiler-flag.m4])
425 m4_include([build/autotools/gtk-doc.m4])
426
427=== modified file 'clutter-gst/Makefile.am'
428--- clutter-gst/Makefile.am 2013-03-07 15:58:21 +0000
429+++ clutter-gst/Makefile.am 2014-06-30 02:31:21 +0000
430@@ -142,7 +142,7 @@
431 --include=GstAudio-1.0 \
432 --add-init-section="clutter_gst_init(0,NULL);" \
433 --library=libclutter-gst-@CLUTTER_GST_API_VERSION@.la \
434- --libtool="$(top_builddir)/libtool" \
435+ --libtool="${LIBTOOL}" \
436 --output $@ \
437 --pkg gobject-2.0 \
438 --pkg clutter-1.0 \
439
440=== modified file 'clutter-gst/Makefile.in'
441--- clutter-gst/Makefile.in 2014-04-14 20:13:16 +0000
442+++ clutter-gst/Makefile.in 2014-06-30 02:31:21 +0000
443@@ -1257,7 +1257,7 @@
444 @HAVE_INTROSPECTION_TRUE@ --include=GstAudio-1.0 \
445 @HAVE_INTROSPECTION_TRUE@ --add-init-section="clutter_gst_init(0,NULL);" \
446 @HAVE_INTROSPECTION_TRUE@ --library=libclutter-gst-@CLUTTER_GST_API_VERSION@.la \
447-@HAVE_INTROSPECTION_TRUE@ --libtool="$(top_builddir)/libtool" \
448+@HAVE_INTROSPECTION_TRUE@ --libtool="${LIBTOOL}" \
449 @HAVE_INTROSPECTION_TRUE@ --output $@ \
450 @HAVE_INTROSPECTION_TRUE@ --pkg gobject-2.0 \
451 @HAVE_INTROSPECTION_TRUE@ --pkg clutter-1.0 \
452
453=== modified file 'clutter-gst/clutter-gst-version.h'
454--- clutter-gst/clutter-gst-version.h 2014-04-14 20:13:16 +0000
455+++ clutter-gst/clutter-gst-version.h 2014-06-30 02:31:21 +0000
456@@ -56,21 +56,21 @@
457 *
458 * ClutterGst micro version (e.g. "3", if %CLUTTER_GST_VERSION is "1.2.3")
459 */
460-#define CLUTTER_GST_MICRO_VERSION (10)
461+#define CLUTTER_GST_MICRO_VERSION (12)
462
463 /**
464 * CLUTTER_GST_VERSION:
465 *
466 * ClutterGst full version (e.g. "1.2.3")
467 */
468-#define CLUTTER_GST_VERSION (2.0.10)
469+#define CLUTTER_GST_VERSION (2.0.12)
470
471 /**
472 * CLUTTER_GST_VERSION_S:
473 *
474 * ClutterGst full version, encoded as a string.
475 */
476-#define CLUTTER_GST_VERSION_S "2.0.10"
477+#define CLUTTER_GST_VERSION_S "2.0.12"
478
479 /**
480 * CLUTTER_GST_VERSION_HEX:
481
482=== modified file 'configure'
483--- configure 2014-04-14 20:13:16 +0000
484+++ configure 2014-06-30 02:31:21 +0000
485@@ -1,6 +1,6 @@
486 #! /bin/sh
487 # Guess values for system-dependent variables and create Makefiles.
488-# Generated by GNU Autoconf 2.69 for clutter-gst 2.0.10.
489+# Generated by GNU Autoconf 2.69 for clutter-gst 2.0.12.
490 #
491 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=clutter-gst>.
492 #
493@@ -591,8 +591,8 @@
494 # Identity of this package.
495 PACKAGE_NAME='clutter-gst'
496 PACKAGE_TARNAME='clutter-gst'
497-PACKAGE_VERSION='2.0.10'
498-PACKAGE_STRING='clutter-gst 2.0.10'
499+PACKAGE_VERSION='2.0.12'
500+PACKAGE_STRING='clutter-gst 2.0.12'
501 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=clutter-gst'
502 PACKAGE_URL=''
503
504@@ -1396,7 +1396,7 @@
505 # Omit some internal or obsolete options to make the list less imposing.
506 # This message is too long to be a string in the A/UX 3.1 sh.
507 cat <<_ACEOF
508-\`configure' configures clutter-gst 2.0.10 to adapt to many kinds of systems.
509+\`configure' configures clutter-gst 2.0.12 to adapt to many kinds of systems.
510
511 Usage: $0 [OPTION]... [VAR=VALUE]...
512
513@@ -1466,7 +1466,7 @@
514
515 if test -n "$ac_init_help"; then
516 case $ac_init_help in
517- short | recursive ) echo "Configuration of clutter-gst 2.0.10:";;
518+ short | recursive ) echo "Configuration of clutter-gst 2.0.12:";;
519 esac
520 cat <<\_ACEOF
521
522@@ -1602,7 +1602,7 @@
523 test -n "$ac_init_help" && exit $ac_status
524 if $ac_init_version; then
525 cat <<\_ACEOF
526-clutter-gst configure 2.0.10
527+clutter-gst configure 2.0.12
528 generated by GNU Autoconf 2.69
529
530 Copyright (C) 2012 Free Software Foundation, Inc.
531@@ -1971,7 +1971,7 @@
532 This file contains any messages produced by compilers while
533 running configure, to aid debugging if configure makes a mistake.
534
535-It was created by clutter-gst $as_me 2.0.10, which was
536+It was created by clutter-gst $as_me 2.0.12, which was
537 generated by GNU Autoconf 2.69. Invocation command line was
538
539 $ $0 $@
540@@ -2842,7 +2842,7 @@
541
542 # Define the identity of the package.
543 PACKAGE='clutter-gst'
544- VERSION='2.0.10'
545+ VERSION='2.0.12'
546
547
548 cat >>confdefs.h <<_ACEOF
549@@ -3051,12 +3051,13 @@
550 fi
551 fi
552
553+
554 echo \#buildapi-variable-no-builddir >/dev/null
555
556 CLUTTER_GST_MAJOR_VERSION=2
557 CLUTTER_GST_MINOR_VERSION=0
558-CLUTTER_GST_MICRO_VERSION=10
559-CLUTTER_GST_VERSION=2.0.10
560+CLUTTER_GST_MICRO_VERSION=12
561+CLUTTER_GST_VERSION=2.0.12
562 CLUTTER_GST_API_VERSION=2.0
563 CLUTTER_GST_MAJORMINOR=2.0
564 CLUTTER_API_VERSION=1.0
565@@ -3072,9 +3073,9 @@
566
567
568
569-CLUTTER_GST_LT_CURRENT=10
570+CLUTTER_GST_LT_CURRENT=12
571 CLUTTER_GST_LT_REV=0
572-CLUTTER_GST_LT_AGE=10
573+CLUTTER_GST_LT_AGE=12
574 CLUTTER_GST_LT_VERSION="$CLUTTER_GST_LT_CURRENT:$CLUTTER_GST_LT_REV:$CLUTTER_GST_LT_AGE"
575 CLUTTER_GST_LT_LDFLAGS="-version-info $CLUTTER_GST_LT_VERSION"
576
577@@ -3175,8 +3176,8 @@
578 GLIB_REQ_VERSION=2.18.0
579 COGL_REQ_VERSION=1.10.0
580 CLUTTER_REQ_VERSION=1.6.0
581-GSTREAMER_REQ_VERSION=1.0.0
582-GST_PLUGINS_BAD_REQ_VERSION=1.0.0
583+GSTREAMER_REQ_VERSION=1.2.0
584+GST_PLUGINS_BAD_REQ_VERSION=1.2.0
585
586
587
588@@ -15057,7 +15058,7 @@
589 # report actual input values of CONFIG_FILES etc. instead of their
590 # values after options handling.
591 ac_log="
592-This file was extended by clutter-gst $as_me 2.0.10, which was
593+This file was extended by clutter-gst $as_me 2.0.12, which was
594 generated by GNU Autoconf 2.69. Invocation command line was
595
596 CONFIG_FILES = $CONFIG_FILES
597@@ -15123,7 +15124,7 @@
598 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
599 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
600 ac_cs_version="\\
601-clutter-gst config.status 2.0.10
602+clutter-gst config.status 2.0.12
603 configured by $0, generated by GNU Autoconf 2.69,
604 with options \\"\$ac_cs_config\\"
605
606
607=== modified file 'configure.ac'
608--- configure.ac 2014-04-14 20:13:16 +0000
609+++ configure.ac 2014-06-30 02:31:21 +0000
610@@ -3,7 +3,7 @@
611 # An even micro number indicates a released version.
612 m4_define(clutter_gst_major_version, 2)
613 m4_define(clutter_gst_minor_version, 0)
614-m4_define(clutter_gst_micro_version, 10)
615+m4_define(clutter_gst_micro_version, 12)
616
617 m4_define(clutter_api_version, 1.0)
618 m4_define([clutter_gst_api_version], [2.0])
619@@ -81,8 +81,8 @@
620 GLIB_REQ_VERSION=2.18.0
621 COGL_REQ_VERSION=1.10.0
622 CLUTTER_REQ_VERSION=1.6.0
623-GSTREAMER_REQ_VERSION=1.0.0
624-GST_PLUGINS_BAD_REQ_VERSION=1.0.0
625+GSTREAMER_REQ_VERSION=1.2.0
626+GST_PLUGINS_BAD_REQ_VERSION=1.2.0
627
628 AC_SUBST(GLIB_REQ_VERSION)
629 AC_SUBST(CLUTTER_REQ_VERSION)
630
631=== modified file 'debian/changelog'
632--- debian/changelog 2014-04-26 22:29:05 +0000
633+++ debian/changelog 2014-06-30 02:31:21 +0000
634@@ -1,3 +1,10 @@
635+clutter-gst-2.0 (2.0.12-0ubuntu1) utopic; urgency=medium
636+
637+ * New upstream release.
638+ * debian/control: Bump gstreamer versions to >= 1.2
639+
640+ -- Jackson Doak <noskcaj@ubuntu.com> Mon, 30 Jun 2014 11:13:56 +1000
641+
642 clutter-gst-2.0 (2.0.10-1build1) utopic; urgency=high
643
644 * No change rebuild against cogl 20.
645
646=== modified file 'debian/control'
647--- debian/control 2014-04-14 20:13:16 +0000
648+++ debian/control 2014-06-30 02:31:21 +0000
649@@ -6,7 +6,8 @@
650 Source: clutter-gst-2.0
651 Section: libs
652 Priority: optional
653-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
654+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
655+XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
656 Uploaders: Gustavo Noronha Silva <kov@debian.org>, Michael Biebl <biebl@debian.org>, Sjoerd Simons <sjoerd@debian.org>
657 Build-Depends: debhelper (>= 8.1.3),
658 cdbs (>= 0.4.93~),
659@@ -15,8 +16,8 @@
660 libglib2.0-0 (>= 2.18.0),
661 libclutter-1.0-dev (>= 1.13.0),
662 libcogl-dev (>= 1.10.0),
663- libgstreamer1.0-dev (>= 1.0.0),
664- libgstreamer-plugins-base1.0-dev (>= 1.0.0),
665+ libgstreamer1.0-dev (>= 1.2.0),
666+ libgstreamer-plugins-base1.0-dev (>= 1.2.0),
667 libgirepository1.0-dev (>= 0.9.12-4~),
668 gobject-introspection (>= 0.9.12-4~)
669 Standards-Version: 3.9.4
670@@ -42,8 +43,8 @@
671 gstreamer1.0-clutter (= ${binary:Version}),
672 pkg-config,
673 libclutter-1.0-dev (>= 1.6.10-3),
674- libgstreamer1.0-dev (>= 1.0.0),
675- libgstreamer-plugins-base1.0-dev (>= 1.0.0),
676+ libgstreamer1.0-dev (>= 1.2.0),
677+ libgstreamer-plugins-base1.0-dev (>= 1.2.0),
678 ${misc:Depends}
679 Suggests: libclutter-gst-2.0-doc
680 Description: Open GL based interactive canvas library GStreamer elements (development files)
681
682=== modified file 'debian/control.in'
683--- debian/control.in 2013-08-22 23:33:12 +0000
684+++ debian/control.in 2014-06-30 02:31:21 +0000
685@@ -1,7 +1,8 @@
686 Source: clutter-gst-2.0
687 Section: libs
688 Priority: optional
689-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
690+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
691+XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
692 Uploaders: @GNOME_TEAM@
693 Build-Depends: debhelper (>= 8.1.3),
694 cdbs (>= 0.4.93~),
695@@ -10,8 +11,8 @@
696 libglib2.0-0 (>= 2.18.0),
697 libclutter-1.0-dev (>= 1.13.0),
698 libcogl-dev (>= 1.10.0),
699- libgstreamer1.0-dev (>= 1.0.0),
700- libgstreamer-plugins-base1.0-dev (>= 1.0.0),
701+ libgstreamer1.0-dev (>= 1.2.0),
702+ libgstreamer-plugins-base1.0-dev (>= 1.2.0),
703 libgirepository1.0-dev (>= 0.9.12-4~),
704 gobject-introspection (>= 0.9.12-4~)
705 Standards-Version: 3.9.4
706@@ -37,8 +38,8 @@
707 gstreamer1.0-clutter (= ${binary:Version}),
708 pkg-config,
709 libclutter-1.0-dev (>= 1.6.10-3),
710- libgstreamer1.0-dev (>= 1.0.0),
711- libgstreamer-plugins-base1.0-dev (>= 1.0.0),
712+ libgstreamer1.0-dev (>= 1.2.0),
713+ libgstreamer-plugins-base1.0-dev (>= 1.2.0),
714 ${misc:Depends}
715 Suggests: libclutter-gst-2.0-doc
716 Description: Open GL based interactive canvas library GStreamer elements (development files)
717
718=== modified file 'doc/reference/Makefile.in'
719--- doc/reference/Makefile.in 2014-04-14 20:13:16 +0000
720+++ doc/reference/Makefile.in 2014-06-30 02:31:21 +0000
721@@ -668,6 +668,8 @@
722 files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
723 if test "x$$files" != "x" ; then \
724 for file in $$files ; do \
725+ destdir=`dirname $(abs_builddir)/$$file` ;\
726+ test -d "$$destdir" || mkdir -p "$$destdir"; \
727 test -f $(abs_srcdir)/$$file && \
728 cp -pu $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
729 done; \
730
731=== modified file 'doc/reference/html/ClutterGstPlayer.html'
732--- doc/reference/html/ClutterGstPlayer.html 2014-04-14 20:13:16 +0000
733+++ doc/reference/html/ClutterGstPlayer.html 2014-06-30 02:31:21 +0000
734@@ -2,10 +2,10 @@
735 <html>
736 <head>
737 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
738-<title>Clutter Gst 2.0.10
739+<title>Clutter Gst 2.0.12
740 Reference Manual: ClutterGstPlayer</title>
741 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
742-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
743+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
744 <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
745 <link rel="prev" href="ch02.html" title="Clutter Actors And Objects">
746 <link rel="next" href="ClutterGstVideoTexture.html" title="ClutterGstVideoTexture">
747
748=== modified file 'doc/reference/html/ClutterGstVideoSink.html'
749--- doc/reference/html/ClutterGstVideoSink.html 2014-04-14 20:13:16 +0000
750+++ doc/reference/html/ClutterGstVideoSink.html 2014-06-30 02:31:21 +0000
751@@ -2,10 +2,10 @@
752 <html>
753 <head>
754 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
755-<title>Clutter Gst 2.0.10
756+<title>Clutter Gst 2.0.12
757 Reference Manual: ClutterGstVideoSink</title>
758 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
759-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
760+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
761 <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
762 <link rel="prev" href="ClutterGstVideoTexture.html" title="ClutterGstVideoTexture">
763 <link rel="next" href="clutter-gst-Utilities.html" title="Utilities">
764
765=== modified file 'doc/reference/html/ClutterGstVideoTexture.html'
766--- doc/reference/html/ClutterGstVideoTexture.html 2014-04-14 20:13:16 +0000
767+++ doc/reference/html/ClutterGstVideoTexture.html 2014-06-30 02:31:21 +0000
768@@ -2,10 +2,10 @@
769 <html>
770 <head>
771 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
772-<title>Clutter Gst 2.0.10
773+<title>Clutter Gst 2.0.12
774 Reference Manual: ClutterGstVideoTexture</title>
775 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
776-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
777+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
778 <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
779 <link rel="prev" href="ClutterGstPlayer.html" title="ClutterGstPlayer">
780 <link rel="next" href="ClutterGstVideoSink.html" title="ClutterGstVideoSink">
781
782=== modified file 'doc/reference/html/ch01.html'
783--- doc/reference/html/ch01.html 2014-04-14 20:13:16 +0000
784+++ doc/reference/html/ch01.html 2014-06-30 02:31:21 +0000
785@@ -2,12 +2,12 @@
786 <html>
787 <head>
788 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
789-<title>Clutter Gst 2.0.10
790+<title>Clutter Gst 2.0.12
791 Reference Manual: Clutter Gst Overview</title>
792 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
793-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
794-<link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
795-<link rel="prev" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
796+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
797+<link rel="up" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
798+<link rel="prev" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
799 <link rel="next" href="ch02.html" title="Clutter Actors And Objects">
800 <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
801 <link rel="stylesheet" href="style.css" type="text/css">
802
803=== modified file 'doc/reference/html/ch02.html'
804--- doc/reference/html/ch02.html 2014-04-14 20:13:16 +0000
805+++ doc/reference/html/ch02.html 2014-06-30 02:31:21 +0000
806@@ -2,11 +2,11 @@
807 <html>
808 <head>
809 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
810-<title>Clutter Gst 2.0.10
811+<title>Clutter Gst 2.0.12
812 Reference Manual: Clutter Actors And Objects</title>
813 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
814-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
815-<link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
816+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
817+<link rel="up" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
818 <link rel="prev" href="ch01.html" title="Clutter Gst Overview">
819 <link rel="next" href="ClutterGstPlayer.html" title="ClutterGstPlayer">
820 <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
821
822=== modified file 'doc/reference/html/clutter-gst-Utilities.html'
823--- doc/reference/html/clutter-gst-Utilities.html 2014-04-14 20:13:16 +0000
824+++ doc/reference/html/clutter-gst-Utilities.html 2014-06-30 02:31:21 +0000
825@@ -2,10 +2,10 @@
826 <html>
827 <head>
828 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
829-<title>Clutter Gst 2.0.10
830+<title>Clutter Gst 2.0.12
831 Reference Manual: Utilities</title>
832 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
833-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
834+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
835 <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
836 <link rel="prev" href="ClutterGstVideoSink.html" title="ClutterGstVideoSink">
837 <link rel="next" href="clutter-gst-Versioning-Macros.html" title="Versioning Macros">
838
839=== modified file 'doc/reference/html/clutter-gst-Versioning-Macros.html'
840--- doc/reference/html/clutter-gst-Versioning-Macros.html 2014-04-14 20:13:16 +0000
841+++ doc/reference/html/clutter-gst-Versioning-Macros.html 2014-06-30 02:31:21 +0000
842@@ -2,10 +2,10 @@
843 <html>
844 <head>
845 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
846-<title>Clutter Gst 2.0.10
847+<title>Clutter Gst 2.0.12
848 Reference Manual: Versioning Macros</title>
849 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
850-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
851+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
852 <link rel="up" href="ch02.html" title="Clutter Actors And Objects">
853 <link rel="prev" href="clutter-gst-Utilities.html" title="Utilities">
854 <link rel="next" href="license.html" title="Appendix A. License">
855@@ -74,7 +74,7 @@
856 <hr>
857 <div class="refsect2">
858 <a name="CLUTTER-GST-MICRO-VERSION:CAPS"></a><h3>CLUTTER_GST_MICRO_VERSION</h3>
859-<pre class="programlisting">#define CLUTTER_GST_MICRO_VERSION (10)
860+<pre class="programlisting">#define CLUTTER_GST_MICRO_VERSION (12)
861 </pre>
862 <p>
863 ClutterGst micro version (e.g. "3", if <a class="link" href="clutter-gst-Versioning-Macros.html#CLUTTER-GST-VERSION:CAPS" title="CLUTTER_GST_VERSION"><code class="literal">CLUTTER_GST_VERSION</code></a> is "1.2.3")
864@@ -83,7 +83,7 @@
865 <hr>
866 <div class="refsect2">
867 <a name="CLUTTER-GST-VERSION:CAPS"></a><h3>CLUTTER_GST_VERSION</h3>
868-<pre class="programlisting">#define CLUTTER_GST_VERSION (2.0.10)
869+<pre class="programlisting">#define CLUTTER_GST_VERSION (2.0.12)
870 </pre>
871 <p>
872 ClutterGst full version (e.g. "1.2.3")
873@@ -92,7 +92,7 @@
874 <hr>
875 <div class="refsect2">
876 <a name="CLUTTER-GST-VERSION-S:CAPS"></a><h3>CLUTTER_GST_VERSION_S</h3>
877-<pre class="programlisting">#define CLUTTER_GST_VERSION_S "2.0.10"
878+<pre class="programlisting">#define CLUTTER_GST_VERSION_S "2.0.12"
879 </pre>
880 <p>
881 ClutterGst full version, encoded as a string.
882
883=== modified file 'doc/reference/html/clutter-gst.devhelp2'
884--- doc/reference/html/clutter-gst.devhelp2 2014-04-14 20:13:16 +0000
885+++ doc/reference/html/clutter-gst.devhelp2 2014-06-30 02:31:21 +0000
886@@ -1,6 +1,6 @@
887 <?xml version="1.0" encoding="utf-8" standalone="no"?>
888 <!DOCTYPE book PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "">
889-<book xmlns="http://www.devhelp.net/book" title="Clutter Gst 2.0.10&#10; Reference Manual" link="index.html" author="" name="clutter-gst" version="2" language="c">
890+<book xmlns="http://www.devhelp.net/book" title="Clutter Gst 2.0.12&#10; Reference Manual" link="index.html" author="" name="clutter-gst" version="2" language="c">
891 <chapters>
892 <sub name="Clutter Gst Overview" link="ch01.html"/>
893 <sub name="Clutter Actors And Objects" link="ch02.html">
894
895=== modified file 'doc/reference/html/index.html'
896--- doc/reference/html/index.html 2014-04-14 20:13:16 +0000
897+++ doc/reference/html/index.html 2014-06-30 02:31:21 +0000
898@@ -2,10 +2,10 @@
899 <html>
900 <head>
901 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
902-<title>Clutter Gst 2.0.10
903- Reference Manual: Clutter Gst 2.0.10 Reference Manual</title>
904+<title>Clutter Gst 2.0.12
905+ Reference Manual: Clutter Gst 2.0.12 Reference Manual</title>
906 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
907-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
908+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
909 <link rel="next" href="ch01.html" title="Clutter Gst Overview">
910 <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
911 <link rel="stylesheet" href="style.css" type="text/css">
912@@ -14,9 +14,9 @@
913 <div class="book">
914 <div class="titlepage">
915 <div>
916-<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter Gst 2.0.10
917+<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter Gst 2.0.12
918 Reference Manual</p></th></tr></table></div>
919-<div><p class="releaseinfo">Version 2.0.10
920+<div><p class="releaseinfo">Version 2.0.12
921 </p></div>
922 <div><p class="copyright">Copyright © 2006, 2007, 2008 OpenedHand LTD</p></div>
923 <div><p class="copyright">Copyright © 2009, 2010 Intel Corporation</p></div>
924
925=== modified file 'doc/reference/html/license.html'
926--- doc/reference/html/license.html 2014-04-14 20:13:16 +0000
927+++ doc/reference/html/license.html 2014-06-30 02:31:21 +0000
928@@ -2,11 +2,11 @@
929 <html>
930 <head>
931 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
932-<title>Clutter Gst 2.0.10
933+<title>Clutter Gst 2.0.12
934 Reference Manual: Appendix A. License</title>
935 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
936-<link rel="home" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
937-<link rel="up" href="index.html" title="Clutter Gst 2.0.10 Reference Manual">
938+<link rel="home" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
939+<link rel="up" href="index.html" title="Clutter Gst 2.0.12 Reference Manual">
940 <link rel="prev" href="clutter-gst-Versioning-Macros.html" title="Versioning Macros">
941 <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
942 <link rel="stylesheet" href="style.css" type="text/css">
943
944=== modified file 'doc/reference/version.xml'
945--- doc/reference/version.xml 2014-04-14 20:13:16 +0000
946+++ doc/reference/version.xml 2014-06-30 02:31:21 +0000
947@@ -1,1 +1,1 @@
948-2.0.10
949+2.0.12
950
951=== modified file 'examples/Makefile.am'
952--- examples/Makefile.am 2012-08-27 18:35:24 +0000
953+++ examples/Makefile.am 2014-06-30 02:31:21 +0000
954@@ -2,27 +2,27 @@
955
956 noinst_PROGRAMS = video-player video-sink video-sink-navigation
957
958-INCLUDES = -I$(top_srcdir) \
959- $(MAINTAINER_CFLAGS) \
960- $(NULL)
961+AM_CPPFLAGS = -I$(top_srcdir) \
962+ $(MAINTAINER_CFLAGS) \
963+ $(NULL)
964
965 video_player_SOURCES = video-player.c
966 video_player_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
967-video_player_LDFLAGS = \
968+video_player_LDADD = \
969 $(CLUTTER_GST_LIBS) \
970 $(GST_LIBS) \
971 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
972
973 video_sink_SOURCES = video-sink.c
974 video_sink_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
975-video_sink_LDFLAGS = \
976+video_sink_LDADD = \
977 $(CLUTTER_GST_LIBS) \
978 $(GST_LIBS) \
979 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
980
981 video_sink_navigation_SOURCES = video-sink-navigation.c
982 video_sink_navigation_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
983-video_sink_navigation_LDFLAGS = \
984+video_sink_navigation_LDADD = \
985 $(CLUTTER_GST_LIBS) \
986 $(GST_LIBS) \
987 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
988
989=== modified file 'examples/Makefile.in'
990--- examples/Makefile.in 2014-04-14 20:13:16 +0000
991+++ examples/Makefile.in 2014-06-30 02:31:21 +0000
992@@ -104,28 +104,34 @@
993 PROGRAMS = $(noinst_PROGRAMS)
994 am_video_player_OBJECTS = video_player-video-player.$(OBJEXT)
995 video_player_OBJECTS = $(am_video_player_OBJECTS)
996-video_player_LDADD = $(LDADD)
997+am__DEPENDENCIES_1 =
998+video_player_DEPENDENCIES = $(am__DEPENDENCIES_1) \
999+ $(am__DEPENDENCIES_1) \
1000+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1001 AM_V_lt = $(am__v_lt_@AM_V@)
1002 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
1003 am__v_lt_0 = --silent
1004 am__v_lt_1 =
1005 video_player_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
1006 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(video_player_CFLAGS) \
1007- $(CFLAGS) $(video_player_LDFLAGS) $(LDFLAGS) -o $@
1008+ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1009 am_video_sink_OBJECTS = video_sink-video-sink.$(OBJEXT)
1010 video_sink_OBJECTS = $(am_video_sink_OBJECTS)
1011-video_sink_LDADD = $(LDADD)
1012+video_sink_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
1013+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1014 video_sink_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
1015 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(video_sink_CFLAGS) \
1016- $(CFLAGS) $(video_sink_LDFLAGS) $(LDFLAGS) -o $@
1017+ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1018 am_video_sink_navigation_OBJECTS = \
1019 video_sink_navigation-video-sink-navigation.$(OBJEXT)
1020 video_sink_navigation_OBJECTS = $(am_video_sink_navigation_OBJECTS)
1021-video_sink_navigation_LDADD = $(LDADD)
1022+video_sink_navigation_DEPENDENCIES = $(am__DEPENDENCIES_1) \
1023+ $(am__DEPENDENCIES_1) \
1024+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1025 video_sink_navigation_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
1026 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
1027- $(video_sink_navigation_CFLAGS) $(CFLAGS) \
1028- $(video_sink_navigation_LDFLAGS) $(LDFLAGS) -o $@
1029+ $(video_sink_navigation_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
1030+ $(LDFLAGS) -o $@
1031 AM_V_P = $(am__v_P_@AM_V@)
1032 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
1033 am__v_P_0 = false
1034@@ -350,27 +356,27 @@
1035 top_builddir = @top_builddir@
1036 top_srcdir = @top_srcdir@
1037 NULL = #
1038-INCLUDES = -I$(top_srcdir) \
1039- $(MAINTAINER_CFLAGS) \
1040- $(NULL)
1041+AM_CPPFLAGS = -I$(top_srcdir) \
1042+ $(MAINTAINER_CFLAGS) \
1043+ $(NULL)
1044
1045 video_player_SOURCES = video-player.c
1046 video_player_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1047-video_player_LDFLAGS = \
1048+video_player_LDADD = \
1049 $(CLUTTER_GST_LIBS) \
1050 $(GST_LIBS) \
1051 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1052
1053 video_sink_SOURCES = video-sink.c
1054 video_sink_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1055-video_sink_LDFLAGS = \
1056+video_sink_LDADD = \
1057 $(CLUTTER_GST_LIBS) \
1058 $(GST_LIBS) \
1059 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1060
1061 video_sink_navigation_SOURCES = video-sink-navigation.c
1062 video_sink_navigation_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1063-video_sink_navigation_LDFLAGS = \
1064+video_sink_navigation_LDADD = \
1065 $(CLUTTER_GST_LIBS) \
1066 $(GST_LIBS) \
1067 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1068
1069=== modified file 'gtk-doc.make'
1070--- gtk-doc.make 2014-04-14 20:13:16 +0000
1071+++ gtk-doc.make 2014-06-30 02:31:21 +0000
1072@@ -88,6 +88,8 @@
1073 files=`echo $(SETUP_FILES) $(expand_content_files) $(DOC_MODULE).types`; \
1074 if test "x$$files" != "x" ; then \
1075 for file in $$files ; do \
1076+ destdir=`dirname $(abs_builddir)/$$file` ;\
1077+ test -d "$$destdir" || mkdir -p "$$destdir"; \
1078 test -f $(abs_srcdir)/$$file && \
1079 cp -pu $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
1080 done; \
1081
1082=== modified file 'tests/Makefile.am'
1083--- tests/Makefile.am 2012-08-27 18:35:24 +0000
1084+++ tests/Makefile.am 2014-06-30 02:31:21 +0000
1085@@ -8,41 +8,41 @@
1086 test-video-texture-new-unref-loop \
1087 $(NULL)
1088
1089-INCLUDES = -I$(top_srcdir) \
1090- $(MAINTAINER_CFLAGS) \
1091- $(NULL)
1092+AM_CPPFLAGS = -I$(top_srcdir) \
1093+ $(MAINTAINER_CFLAGS) \
1094+ $(NULL)
1095
1096 test_alpha_SOURCES = test-alpha.c
1097 test_alpha_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1098-test_alpha_LDFLAGS = \
1099+test_alpha_LDADD = \
1100 $(CLUTTER_GST_LIBS) \
1101 $(GST_LIBS) \
1102 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1103
1104 test_rgb_upload_SOURCES = test-rgb-upload.c
1105 test_rgb_upload_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1106-test_rgb_upload_LDFLAGS = \
1107+test_rgb_upload_LDADD = \
1108 $(CLUTTER_GST_LIBS) \
1109 $(GST_LIBS) \
1110 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1111
1112 test_start_stop_SOURCES = test-start-stop.c
1113 test_start_stop_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1114-test_start_stop_LDFLAGS = \
1115+test_start_stop_LDADD = \
1116 $(CLUTTER_GST_LIBS) \
1117 $(GST_LIBS) \
1118 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1119
1120 test_yuv_upload_SOURCES = test-yuv-upload.c
1121 test_yuv_upload_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1122-test_yuv_upload_LDFLAGS = \
1123+test_yuv_upload_LDADD = \
1124 $(CLUTTER_GST_LIBS) \
1125 $(GST_LIBS) \
1126 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1127
1128 test_video_texture_new_unref_loop_SOURCES = test-video-texture-new-unref-loop.c
1129 test_video_texture_new_unref_loop_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1130-test_video_texture_new_unref_loop_LDFLAGS = \
1131+test_video_texture_new_unref_loop_LDADD = \
1132 $(CLUTTER_GST_LIBS) \
1133 $(GST_LIBS) \
1134 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1135
1136=== modified file 'tests/Makefile.in'
1137--- tests/Makefile.in 2014-04-14 20:13:16 +0000
1138+++ tests/Makefile.in 2014-06-30 02:31:21 +0000
1139@@ -106,46 +106,56 @@
1140 PROGRAMS = $(noinst_PROGRAMS)
1141 am_test_alpha_OBJECTS = test_alpha-test-alpha.$(OBJEXT)
1142 test_alpha_OBJECTS = $(am_test_alpha_OBJECTS)
1143-test_alpha_LDADD = $(LDADD)
1144+am__DEPENDENCIES_1 =
1145+test_alpha_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
1146+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1147 AM_V_lt = $(am__v_lt_@AM_V@)
1148 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
1149 am__v_lt_0 = --silent
1150 am__v_lt_1 =
1151 test_alpha_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
1152 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_alpha_CFLAGS) \
1153- $(CFLAGS) $(test_alpha_LDFLAGS) $(LDFLAGS) -o $@
1154+ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1155 am_test_rgb_upload_OBJECTS = \
1156 test_rgb_upload-test-rgb-upload.$(OBJEXT)
1157 test_rgb_upload_OBJECTS = $(am_test_rgb_upload_OBJECTS)
1158-test_rgb_upload_LDADD = $(LDADD)
1159+test_rgb_upload_DEPENDENCIES = $(am__DEPENDENCIES_1) \
1160+ $(am__DEPENDENCIES_1) \
1161+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1162 test_rgb_upload_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
1163 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
1164- $(test_rgb_upload_CFLAGS) $(CFLAGS) $(test_rgb_upload_LDFLAGS) \
1165- $(LDFLAGS) -o $@
1166+ $(test_rgb_upload_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
1167+ -o $@
1168 am_test_start_stop_OBJECTS = \
1169 test_start_stop-test-start-stop.$(OBJEXT)
1170 test_start_stop_OBJECTS = $(am_test_start_stop_OBJECTS)
1171-test_start_stop_LDADD = $(LDADD)
1172+test_start_stop_DEPENDENCIES = $(am__DEPENDENCIES_1) \
1173+ $(am__DEPENDENCIES_1) \
1174+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1175 test_start_stop_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
1176 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
1177- $(test_start_stop_CFLAGS) $(CFLAGS) $(test_start_stop_LDFLAGS) \
1178- $(LDFLAGS) -o $@
1179+ $(test_start_stop_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
1180+ -o $@
1181 am_test_video_texture_new_unref_loop_OBJECTS = test_video_texture_new_unref_loop-test-video-texture-new-unref-loop.$(OBJEXT)
1182 test_video_texture_new_unref_loop_OBJECTS = \
1183 $(am_test_video_texture_new_unref_loop_OBJECTS)
1184-test_video_texture_new_unref_loop_LDADD = $(LDADD)
1185+test_video_texture_new_unref_loop_DEPENDENCIES = \
1186+ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
1187+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1188 test_video_texture_new_unref_loop_LINK = $(LIBTOOL) $(AM_V_lt) \
1189 --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
1190 $(CCLD) $(test_video_texture_new_unref_loop_CFLAGS) $(CFLAGS) \
1191- $(test_video_texture_new_unref_loop_LDFLAGS) $(LDFLAGS) -o $@
1192+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
1193 am_test_yuv_upload_OBJECTS = \
1194 test_yuv_upload-test-yuv-upload.$(OBJEXT)
1195 test_yuv_upload_OBJECTS = $(am_test_yuv_upload_OBJECTS)
1196-test_yuv_upload_LDADD = $(LDADD)
1197+test_yuv_upload_DEPENDENCIES = $(am__DEPENDENCIES_1) \
1198+ $(am__DEPENDENCIES_1) \
1199+ $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1200 test_yuv_upload_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
1201 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
1202- $(test_yuv_upload_CFLAGS) $(CFLAGS) $(test_yuv_upload_LDFLAGS) \
1203- $(LDFLAGS) -o $@
1204+ $(test_yuv_upload_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
1205+ -o $@
1206 AM_V_P = $(am__v_P_@AM_V@)
1207 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
1208 am__v_P_0 = false
1209@@ -374,41 +384,41 @@
1210 top_builddir = @top_builddir@
1211 top_srcdir = @top_srcdir@
1212 NULL = #
1213-INCLUDES = -I$(top_srcdir) \
1214- $(MAINTAINER_CFLAGS) \
1215- $(NULL)
1216+AM_CPPFLAGS = -I$(top_srcdir) \
1217+ $(MAINTAINER_CFLAGS) \
1218+ $(NULL)
1219
1220 test_alpha_SOURCES = test-alpha.c
1221 test_alpha_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1222-test_alpha_LDFLAGS = \
1223+test_alpha_LDADD = \
1224 $(CLUTTER_GST_LIBS) \
1225 $(GST_LIBS) \
1226 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1227
1228 test_rgb_upload_SOURCES = test-rgb-upload.c
1229 test_rgb_upload_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1230-test_rgb_upload_LDFLAGS = \
1231+test_rgb_upload_LDADD = \
1232 $(CLUTTER_GST_LIBS) \
1233 $(GST_LIBS) \
1234 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1235
1236 test_start_stop_SOURCES = test-start-stop.c
1237 test_start_stop_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1238-test_start_stop_LDFLAGS = \
1239+test_start_stop_LDADD = \
1240 $(CLUTTER_GST_LIBS) \
1241 $(GST_LIBS) \
1242 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1243
1244 test_yuv_upload_SOURCES = test-yuv-upload.c
1245 test_yuv_upload_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1246-test_yuv_upload_LDFLAGS = \
1247+test_yuv_upload_LDADD = \
1248 $(CLUTTER_GST_LIBS) \
1249 $(GST_LIBS) \
1250 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
1251
1252 test_video_texture_new_unref_loop_SOURCES = test-video-texture-new-unref-loop.c
1253 test_video_texture_new_unref_loop_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
1254-test_video_texture_new_unref_loop_LDFLAGS = \
1255+test_video_texture_new_unref_loop_LDADD = \
1256 $(CLUTTER_GST_LIBS) \
1257 $(GST_LIBS) \
1258 $(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la

Subscribers

People subscribed via source and target branches

to all changes: