Thanks, applied as 9aaaf03e40ac99c7c1b2e06438e681dffae431d0. Michael
[sent from post-receive hook] On Fri, 17 Dec 2021 14:27:08 +0100, Philipp Zabel <[email protected]> wrote: > Signed-off-by: Philipp Zabel <[email protected]> > Message-Id: <[email protected]> > Signed-off-by: Michael Olbrich <[email protected]> > > diff --git a/rules/pipewire.in b/rules/pipewire.in > index 6f8a75276b13..f0a94cab2476 100644 > --- a/rules/pipewire.in > +++ b/rules/pipewire.in > @@ -15,6 +15,7 @@ menuconfig PIPEWIRE > select READLINE if PIPEWIRE_PW_CTL > select NCURSES if PIPEWIRE_PW_TOP > select NCURSES_WIDE_CHAR if PIPEWIRE_PW_TOP > + select OPENSSL if PIPEWIRE_RAOP > select SYSTEMD if PIPEWIRE_SYSTEMD > select UDEV > select UDEV_LIBUDEV > @@ -48,6 +49,10 @@ config PIPEWIRE_PULSEAUDIO > bool > prompt "install pulseaudio compatibility service" > > +config PIPEWIRE_RAOP > + bool > + prompt "enable Remote Audio Output Protocol module" > + > config PIPEWIRE_SYSTEMD_UNIT > bool > default y > diff --git a/rules/pipewire.make b/rules/pipewire.make > index aaf63ece7a48..629d065db74e 100644 > --- a/rules/pipewire.make > +++ b/rules/pipewire.make > @@ -76,7 +76,7 @@ PIPEWIRE_CONF_OPT := \ > -Dpipewire-jack=disabled \ > -Dpipewire-v4l2=enabled \ > -Dpw-cat=enabled \ > - -Draop=disabled \ > + -Draop=$(call ptx/endis,PTXCONF_PIPEWIRE_RAOP)d \ > -Droc=disabled \ > -Dsdl2=disabled \ > -Dsession-managers= \ > @@ -103,7 +103,7 @@ PIPEWIRE_CPPFLAGS = -isystem $(KERNEL_HEADERS_INCLUDE_DIR) > # Target-Install > # > ---------------------------------------------------------------------------- > > -PIPEWIRE_MODULES := \ > +PIPEWIRE_MODULES-y := \ > access \ > adapter \ > client-device \ > @@ -125,6 +125,8 @@ PIPEWIRE_MODULES := \ > spa-node \ > spa-node-factory > > +PIPEWIRE_MODULES-$(PTXCONF_PIPEWIRE_RAOP) += raop-sink > + > PIPEWIRE_SPA_MODULES := \ > alsa/libspa-alsa \ > audiomixer/libspa-audiomixer \ > @@ -181,7 +183,7 @@ endif > @$(call install_link, pipewire, pw-cat, /usr/bin/pw-play) > @$(call install_link, pipewire, pw-cat, /usr/bin/pw-record) > > - @$(foreach module, $(PIPEWIRE_MODULES), \ > + @$(foreach module, $(PIPEWIRE_MODULES-y), \ > $(call install_lib, pipewire, 0, 0, 644, \ > pipewire-0.3/libpipewire-module-$(module))$(ptx/nl)) > _______________________________________________ ptxdist mailing list [email protected] To unsubscribe, send a mail with subject "unsubscribe" to [email protected]
