From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 17 Dec 2021 14:27:58 +0100 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1myDHC-009UTf-5d for lore@lore.pengutronix.de; Fri, 17 Dec 2021 14:27:58 +0100 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1myDHA-0007lu-Sg; Fri, 17 Dec 2021 14:27:56 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1myDGQ-0007KE-5S; Fri, 17 Dec 2021 14:27:10 +0100 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1myDGQ-0052Jj-5e; Fri, 17 Dec 2021 14:27:09 +0100 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1myDGO-00E2cf-KV; Fri, 17 Dec 2021 14:27:08 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 17 Dec 2021 14:27:08 +0100 Message-Id: <20211217132708.3346630-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211216101442.2704994-2-p.zabel@pengutronix.de> References: <20211216101442.2704994-2-p.zabel@pengutronix.de> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] pipewire: allow to enable RAOP module X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Philipp Zabel Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 9aaaf03e40ac99c7c1b2e06438e681dffae431d0. Michael [sent from post-receive hook] On Fri, 17 Dec 2021 14:27:08 +0100, Philipp Zabel wrote: > Signed-off-by: Philipp Zabel > Message-Id: <20211216101442.2704994-2-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > 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 ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de