~diwic/ubuntu/lucid/pulseaudio/bugfixes

« back to all changes in this revision

Viewing changes to debian/patches/0002-load-module-gconf-earlier.patch

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2008-11-04 15:46:00 UTC
  • mfrom: (1.2.1 upstream) (1.1.6 lenny)
  • Revision ID: james.westby@ubuntu.com-20081104154600-hlzknpcazaam0nxm
Tags: 0.9.13-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Don't build against, and create jack package. Jack is not in main.
  - Remove --disable-per-user-esound-socket from configure flags, as we still
    want per user esound sockets.
  - Remove stop links from rc0 and rc6.
  - Change default resample algorithm and bubffer size.
  - Add alsa configuration files to route alsa applications via pulseaudio.
  - Move libasound2-plugins from Recommends to Depends.
* debian/pulseaudio.preinst: When upgrading from intrepid, remove
  /etc/X11/Xsession.d/70pulseaudio, as this was used to minimize a race
  condition when starting GNOME in intrepid. This race should not exist in
  jaunty once libcanberra is built to use pulseaudio as a backend.
* Do not spawn a pulseaudio server if clients fail to find a running server.
* Remove explicit version dependency for libspeex-dev to allow the package
  to be built for now.
* Regenerate autotools files to work with Ubuntu's newer libtool/libltdl.
* debian/control: libpulsecore5 -> libpulsecore8 to match the library
  soname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 121bfc9f1916395e5216927ec3a9e0bbd742395a Mon Sep 17 00:00:00 2001
 
2
From: Sjoerd Simons <sjoerd@debian.org>
 
3
Date: Sun, 19 Oct 2008 13:39:50 +0100
 
4
Subject: [PATCH] load module gconf earlier
 
5
 
 
6
---
 
7
 src/daemon/default.pa.in |   19 ++++++++++---------
 
8
 1 files changed, 10 insertions(+), 9 deletions(-)
 
9
 
 
10
diff --git a/src/daemon/default.pa.in b/src/daemon/default.pa.in
 
11
index 7032038..41322c6 100755
 
12
--- a/src/daemon/default.pa.in
 
13
+++ b/src/daemon/default.pa.in
 
14
@@ -72,6 +72,16 @@ load-module module-native-protocol-unix
 
15
 #load-module module-null-sink sink_name=rtp format=s16be channels=2 rate=44100 description="RTP Multicast Sink"
 
16
 #load-module module-rtp-send source=rtp.monitor
 
17
 
 
18
+### Load additional modules from GConf settings. This can be configured with the paprefs tool.
 
19
+### Please keep in mind that the modules configured by paprefs might conflict with manually
 
20
+### loaded modules.
 
21
+.ifexists module-gconf@PA_SOEXT@
 
22
+.nofail
 
23
+load-module module-gconf
 
24
+.fail
 
25
+.endif
 
26
+
 
27
+
 
28
 ### Automatically restore the volume of streams and devices
 
29
 load-module module-stream-restore
 
30
 load-module module-device-restore
 
31
@@ -96,15 +106,6 @@ load-module module-console-kit
 
32
 ### Enable positioned event sounds
 
33
 load-module module-position-event-sounds
 
34
 
 
35
-### Load additional modules from GConf settings. This can be configured with the paprefs tool.
 
36
-### Please keep in mind that the modules configured by paprefs might conflict with manually
 
37
-### loaded modules.
 
38
-.ifexists module-gconf@PA_SOEXT@
 
39
-.nofail
 
40
-load-module module-gconf
 
41
-.fail
 
42
-.endif
 
43
-
 
44
 # X11 modules should not be started from default.pa so that one daemon
 
45
 # can be shared by multiple sessions.
 
46