mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-04 11:23:46 +00:00
Update to 0.9.13.
This commit is contained in:
parent
a5c5d82907
commit
4b8d8221c7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=221334
@ -7,7 +7,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= pulseaudio
|
||||
PORTVERSION= 0.9.12
|
||||
PORTVERSION= 0.9.13
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://0pointer.de/lennart/projects/${PORTNAME}/
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (pulseaudio-0.9.12.tar.gz) = b8851d52152c5c3b65f4f31ee1ab7631
|
||||
SHA256 (pulseaudio-0.9.12.tar.gz) = 1f3740b96c062a9718cb5f5e2c37cf3b6e4d895fdf66a64b7bc686b249d6eafc
|
||||
SIZE (pulseaudio-0.9.12.tar.gz) = 1270635
|
||||
MD5 (pulseaudio-0.9.13.tar.gz) = 279fb92f08393a6a992d55e3ac9a006b
|
||||
SHA256 (pulseaudio-0.9.13.tar.gz) = b8f9b7936af319f2a9d4d619beddd7f8355fcb2407486193df6cfb7b592e8d53
|
||||
SIZE (pulseaudio-0.9.13.tar.gz) = 1308493
|
||||
|
@ -47,15 +47,3 @@
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -2334,7 +2336,11 @@ int pa_reset_sigs(int except, ...) {
|
||||
int pa_reset_sigsv(const int except[]) {
|
||||
int sig;
|
||||
|
||||
+#ifdef _NSIG
|
||||
for (sig = 1; sig < _NSIG; sig++) {
|
||||
+#else
|
||||
+ for (sig = 1; sig < NSIG; sig++) {
|
||||
+#endif
|
||||
pa_bool_t reset = TRUE;
|
||||
|
||||
switch (sig) {
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- src/pulsecore/proplist-util.c.orig 2008-07-26 17:01:44.000000000 -0400
|
||||
+++ src/pulsecore/proplist-util.c 2008-07-26 17:02:32.000000000 -0400
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
void pa_init_proplist(pa_proplist *p) {
|
||||
int a, b;
|
||||
-#ifndef HAVE_DECL_ENVIRON
|
||||
+#if HAVE_DECL_ENVIRON == 0
|
||||
extern char **environ;
|
||||
#endif
|
||||
char **e;
|
@ -1,18 +0,0 @@
|
||||
--- src/pulsecore/protocol-native.c.orig 2008-07-26 17:04:23.000000000 -0400
|
||||
+++ src/pulsecore/protocol-native.c 2008-07-26 17:08:27.000000000 -0400
|
||||
@@ -2058,6 +2058,7 @@ static void command_auth(PA_GCC_UNUSED p
|
||||
if (c->version < 10 || (c->version >= 13 && !shm_on_remote))
|
||||
do_shm = FALSE;
|
||||
|
||||
+#ifdef HAVE_CREDS
|
||||
if (do_shm) {
|
||||
/* Only enable SHM if both sides are owned by the same
|
||||
* user. This is a security measure because otherwise data
|
||||
@@ -2067,6 +2068,7 @@ static void command_auth(PA_GCC_UNUSED p
|
||||
if (!(creds = pa_pdispatch_creds(pd)) || getuid() != creds->uid)
|
||||
do_shm = FALSE;
|
||||
}
|
||||
+#endif
|
||||
|
||||
pa_log_debug("Negotiated SHM: %s", pa_yes_no(do_shm));
|
||||
pa_pstream_enable_shm(c->pstream, do_shm);
|
@ -16,7 +16,7 @@ etc/pulse/client.conf-dist
|
||||
etc/pulse/daemon.conf-dist
|
||||
@unexec if cmp -s %D/etc/pulse/default.pa %D/etc/pulse/default.pa-dist; then rm -f %D/etc/pulse/default.pa; fi
|
||||
etc/pulse/default.pa-dist
|
||||
@unexec if cmp -s %D/etc/pulse/default.pa %D/etc/pulse/default.pa-dist; then rm -f %D/etc/pulse/default.pa; fi
|
||||
@unexec if cmp -s %D/etc/pulse/system.pa %D/etc/pulse/system.pa-dist; then rm -f %D/etc/pulse/system.pa; fi
|
||||
etc/pulse/system.pa-dist
|
||||
etc/xdg/autostart/pulseaudio.desktop
|
||||
%%AVAHI%%include/pulse/browser.h
|
||||
@ -66,7 +66,7 @@ lib/libpulse.so.0
|
||||
lib/libpulsecore.a
|
||||
lib/libpulsecore.la
|
||||
lib/libpulsecore.so
|
||||
lib/libpulsecore.so.7
|
||||
lib/libpulsecore.so.8
|
||||
lib/libpulsedsp.so
|
||||
lib/pulse-%%PULSE_VERSION%%/modules/libauth-cookie.so
|
||||
lib/pulse-%%PULSE_VERSION%%/modules/libauthkey.so
|
||||
|
Loading…
x
Reference in New Issue
Block a user