[Pkg-pulseaudio-devel] [SCM] pulseaudio packaging branch, patches, updated. upstream/0.9.8-10-g2fb9649
sjoerd at users.alioth.debian.org
sjoerd at users.alioth.debian.org
Fri Nov 30 12:39:13 UTC 2007
The branch, patches has been updated
via 2fb9649d50cfaaa04218dbb9576c1dfa6f51b2ab (commit)
via 940e4bfc15f60dc6a883ee63f8e837edbaffbdde (commit)
via 546cf4b92fa968d9a5242921272ad09c26cda049 (commit)
via c8c7a262a5a53ce1e8edbd5cca00b087d7e95d76 (commit)
via 4c1844dbd5fdd8128fc609764ecd7ef09a6a04ef (commit)
from dcff2dd5a7b6ae0c0a4aa0944fdad9501eeb84d3 (commit)
- Shortlog ------------------------------------------------------------
2fb9649 Merge branch 'patches' of git+ssh://git.debian.org/git/pkg-pulseaudio/pulseaudio into patches
940e4bf Merge branch 'patches' of git+ssh://git.debian.org/git/pkg-pulseaudio/pulseaudio into patches
546cf4b Define __NR_eventfd on arm if it wasn't defined yet
c8c7a26 Fix pa_readlink to put a \0 in the right location
4c1844d Set ESD socket to /tmp/.esd/socket to match up with libesd
Summary of changes:
-----------------------------------------------------------------------
Details of changes:
commit 2fb9649d50cfaaa04218dbb9576c1dfa6f51b2ab
Merge: 940e4bfc15f60dc6a883ee63f8e837edbaffbdde dcff2dd5a7b6ae0c0a4aa0944fdad9501eeb84d3
Author: Sjoerd Simons <sjoerd at luon.net>
Date: Fri Nov 30 13:37:50 2007 +0100
Merge branch 'patches' of git+ssh://git.debian.org/git/pkg-pulseaudio/pulseaudio into patches
commit 940e4bfc15f60dc6a883ee63f8e837edbaffbdde
Merge: 546cf4b92fa968d9a5242921272ad09c26cda049 50b9a0cc8da84f848f0e9099c484edfdec2a92db
Author: Sjoerd Simons <sjoerd at luon.net>
Date: Fri Nov 23 17:35:09 2007 +0100
Merge branch 'patches' of git+ssh://git.debian.org/git/pkg-pulseaudio/pulseaudio into patches
commit 546cf4b92fa968d9a5242921272ad09c26cda049
Author: Sjoerd Simons <sjoerd at luon.net>
Date: Sun Nov 4 13:30:57 2007 +0100
Define __NR_eventfd on arm if it wasn't defined yet
diff --git a/src/pulsecore/fdsem.c b/src/pulsecore/fdsem.c
index 927bf00..59eec18 100644
--- a/src/pulsecore/fdsem.c
+++ b/src/pulsecore/fdsem.c
@@ -53,6 +53,10 @@
#define __NR_eventfd 284
#endif
+#if !defined(__NR_eventfd) && defined(__arm__)
+#define __NR_eventfd (__NR_SYSCALL_BASE+351)
+#endif
+
#if !defined(SYS_eventfd) && defined(__NR_eventfd)
#define SYS_eventfd __NR_eventfd
#endif
commit c8c7a262a5a53ce1e8edbd5cca00b087d7e95d76
Author: Sjoerd Simons <sjoerd at luon.net>
Date: Sat Nov 3 21:13:38 2007 +0100
Fix pa_readlink to put a \0 in the right location
diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c
index b33241a..b2bc5f0 100644
--- a/src/pulsecore/core-util.c
+++ b/src/pulsecore/core-util.c
@@ -1523,7 +1523,7 @@ char *pa_readlink(const char *p) {
}
if ((size_t) n < l-1) {
- c[l-1] = 0;
+ c[n] = 0;
return c;
}
commit 4c1844dbd5fdd8128fc609764ecd7ef09a6a04ef
Author: CJ van den Berg <cj at vdbonline.com>
Date: Wed Oct 31 13:59:31 2007 +0100
Set ESD socket to /tmp/.esd/socket to match up with libesd
diff --git a/src/daemon/default.pa.in b/src/daemon/default.pa.in
index 597993c..b09d0f2 100755
--- a/src/daemon/default.pa.in
+++ b/src/daemon/default.pa.in
@@ -46,7 +46,7 @@ load-module module-detect
.endif
### Load several protocols
-load-module module-esound-protocol-unix
+load-module module-esound-protocol-unix socket="/tmp/.esd/socket"
load-module module-native-protocol-unix
### Network access (may be configured with paprefs, so leave this commented
--
pulseaudio packaging
More information about the Pkg-pulseaudio-devel
mailing list