mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-08 13:29:59 -05:00
creds: Unbreak build without HAVE_CREDS
A recent patch broke the build on FreeBSD, which does not have HAVE_CREDS defined. Also, make sure any attempts to enable the srbchannel on such architectures fail. BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=80642 Reported-by: Ryan Lortie Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
parent
3be8382fcd
commit
2bfedb9f73
3 changed files with 21 additions and 0 deletions
|
|
@ -42,6 +42,8 @@ static void pa_pstream_send_tagstruct_with_ancil(pa_pstream *p, pa_tagstruct *t,
|
|||
pa_packet_unref(packet);
|
||||
}
|
||||
|
||||
#ifdef HAVE_CREDS
|
||||
|
||||
void pa_pstream_send_tagstruct_with_creds(pa_pstream *p, pa_tagstruct *t, const pa_creds *creds) {
|
||||
if (creds) {
|
||||
pa_ancil a;
|
||||
|
|
@ -69,6 +71,14 @@ void pa_pstream_send_tagstruct_with_fds(pa_pstream *p, pa_tagstruct *t, int nfd,
|
|||
pa_pstream_send_tagstruct_with_ancil(p, t, NULL);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
void pa_pstream_send_tagstruct_with_creds(pa_pstream *p, pa_tagstruct *t, const pa_creds *creds) {
|
||||
pa_pstream_send_tagstruct_with_ancil(p, t, NULL);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
void pa_pstream_send_error(pa_pstream *p, uint32_t tag, uint32_t error) {
|
||||
pa_tagstruct *t;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue