~ubuntu-branches/ubuntu/raring/banshee/raring

« back to all changes in this revision

Viewing changes to debian/patches/Remove-check-for-new-enough-playbin-for-gapless-play.patch

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2013-02-15 13:32:06 UTC
  • mfrom: (6.3.31 experimental)
  • Revision ID: package-import@ubuntu.com-20130215133206-tw11r3dsi8ewj8ed
Tags: 2.6.0-6ubuntu1
* [6e1f0dd] Merge from Debian Experimental, remaining changes:
  - Enable and recommend SoundMenu and Disable NotificationArea by default
  - Disable boo and karma extensions
  - Move desktop file for Meego UI to /usr/share/une/applications
  - Change the url for the Amazon store redirector
  - [9b356d6] Add workaround for set_Height exception.
  - [ccbcbbd] Make Banshee translatable in Launchpad
  - [2094ee5] Bump libgpod build-dep version to 0.8.2-7~
  - [03c8cad] Set debian-branch to ubuntu/raring

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
From: Chow Loong Jin <hyperair@debian.org>
2
 
Date: Sat, 24 Nov 2012 18:20:02 +0800
3
 
Subject: Remove check for new enough playbin for gapless playback
4
 
 
5
 
Now that we've switched to Gstreamer 1.0, we're guaranteed to have a new enough
6
 
playbin, so this check has become irrelevant.
7
 
---
8
 
 configure.ac |    5 +----
9
 
 1 file changed, 1 insertion(+), 4 deletions(-)
10
 
 
11
 
diff --git a/configure.ac b/configure.ac
12
 
index ac949c7..36da2fd 100644
13
 
--- a/configure.ac
14
 
+++ b/configure.ac
15
 
@@ -179,10 +179,7 @@ AC_ARG_ENABLE(gapless-playback,
16
 
                enable_gapless=$enableval,
17
 
                enable_gapless=auto)
18
 
 if test "x$enable_gapless" != "xno" ; then
19
 
-       PKG_CHECK_MODULES([GST_PLUGINS_BASE], [gstreamer-plugins-base-0.10 > 0.10.25.2], ENABLE_GAPLESS=yes, ENABLE_GAPLESS=no)
20
 
-       if test "x$enable_gapless" == "xyes" -a "x$ENABLE_GAPLESS" == "xno" ; then
21
 
-               AC_MSG_ERROR([Gapless playback requires gstreamer-plugins-base > 0.10.25.2])
22
 
-       fi
23
 
+       enable_gapless=yes
24
 
 fi
25
 
 AM_CONDITIONAL(ENABLE_GAPLESS, test "x$ENABLE_GAPLESS" = "xyes")   
26