* [ptxdist] [PATCH] pulseaudio: version bump 12.2 -> 13.0
@ 2019-09-20 18:14 Lucas Stach
0 siblings, 0 replies; only message in thread
From: Lucas Stach @ 2019-09-20 18:14 UTC (permalink / raw)
To: ptxdist
- version bump
- switch to meson build system
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
rules/pulseaudio.in | 1 +
rules/pulseaudio.make | 118 +++++++++++++++++-------------------------
2 files changed, 48 insertions(+), 71 deletions(-)
diff --git a/rules/pulseaudio.in b/rules/pulseaudio.in
index 259482c0f6de..dcc5465eb50d 100644
--- a/rules/pulseaudio.in
+++ b/rules/pulseaudio.in
@@ -2,6 +2,7 @@
menuconfig PULSEAUDIO
tristate
+ select HOST_MESON
select HOST_ORC
select LIBC_M
select LIBC_RT
diff --git a/rules/pulseaudio.make b/rules/pulseaudio.make
index fd7188089697..394f1d0985f2 100644
--- a/rules/pulseaudio.make
+++ b/rules/pulseaudio.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_PULSEAUDIO) += pulseaudio
#
# Paths and names
#
-PULSEAUDIO_VERSION := 12.2
-PULSEAUDIO_MD5 := c42f1f1465e8df9859d023dc184734bf
+PULSEAUDIO_VERSION := 13.0
+PULSEAUDIO_MD5 := e41d606f90254ed45c90520faf83d95c
PULSEAUDIO := pulseaudio-$(PULSEAUDIO_VERSION)
PULSEAUDIO_SUFFIX := tar.xz
PULSEAUDIO_URL := http://freedesktop.org/software/pulseaudio/releases/$(PULSEAUDIO).$(PULSEAUDIO_SUFFIX)
@@ -34,81 +34,57 @@ PULSEAUDIO_LICENSE_FILES := \
# ----------------------------------------------------------------------------
PULSEAUDIO_CONF_ENV := \
- $(CROSS_ENV) \
+ $(CROSS_MESON_ENV) \
ORCC=orcc
#
# autoconf
#
-PULSEAUDIO_CONF_TOOL := autoconf
+PULSEAUDIO_CONF_TOOL := meson
PULSEAUDIO_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- --disable-nls \
- --disable-rpath \
- --enable-atomic-arm-linux-helpers \
- --enable-atomic-arm-memory-barrier \
- --$(call ptx/endis, PTXCONF_ARCH_ARM_NEON)-neon-opt \
- $(GLOBAL_LARGE_FILE_OPTION) \
- --enable-memfd \
- --disable-x11 \
- --disable-tests \
- --disable-samplerate \
- --disable-oss-output \
- --disable-oss-wrapper \
- --disable-coreaudio-output \
- --enable-alsa \
- --disable-esound \
- --disable-solaris \
- --disable-waveout \
- --disable-glib2 \
- --disable-gtk3 \
- --disable-gsettings \
- --disable-gconf \
- --disable-schemas-compile \
- --disable-avahi \
- --disable-jack \
- --disable-asyncns \
- --disable-tcpwrap \
- --disable-lirc \
- --$(call ptx/endis, PTXCONF_PULSEAUDIO_BLUETOOTH)-dbus \
- --disable-bluez4 \
- --$(call ptx/endis, PTXCONF_PULSEAUDIO_BLUETOOTH)-bluez5 \
- --disable-bluez5-ofono-headset \
- --disable-bluez5-native-headset \
- --enable-udev \
- --disable-hal-compat \
- $(GLOBAL_IPV6_OPTION) \
- --disable-openssl \
- --disable-gcov \
- --enable-orc \
- --$(call ptx/endis, PTXCONF_PULSEAUDIO_SYSTEMD)-systemd-daemon \
- --disable-systemd-login \
- --$(call ptx/endis, PTXCONF_PULSEAUDIO_SYSTEMD)-systemd-journal \
- --disable-manpages \
- --disable-per-user-esound-socket \
- --disable-mac-universal \
- --disable-webrtc-aec \
- --enable-adrian-aec \
- --disable-default-build-tests \
- --disable-legacy-database-entry-format \
- --disable-static-bins \
- --disable-force-preopen \
- --with-caps \
- --with-database=simple \
- --with-pulsedsp-location= \
- --without-fftw \
- --$(call ptx/wwo, PTXCONF_PULSEAUDIO_SPEEX)-speex \
- --without-soxr \
- --with-systemduserunitdir=/usr/lib/systemd/user \
- --with-system-user= \
- --with-system-group= \
- --with-access-group=pulse-access \
- --with-mac-version-min= \
- --with-mac-sysroot= \
- --with-preopen-mods=all \
- --with-module-dir=/usr/lib/pulse-$(PULSEAUDIO_VERSION)/modules \
- --with-udev-rules-dir=lib/udev/rules.d \
- --with-zsh-completion-dir=
+ $(CROSS_MESON_USR) \
+ -Daccess_group=pulse-access \
+ -Dadrian-aec=true \
+ -Dalsa=enabled \
+ -Dasyncns=disabled \
+ -Datomic-arm-linux-helpers=true \
+ -Datomic-arm-memory-barrier=true \
+ -Davahi=disabled \
+ -Dbluez5=$(call ptx/truefalse, PTXCONF_PULSEAUDIO_BLUETOOTH) \
+ -Dbluez5-native-headset=false \
+ -Dbluez5-ofono-headset=false \
+ -Ddatabase=simple \
+ -Ddbus=$(call ptx/endis, PTXCONF_PULSEAUDIO_BLUETOOTH)d \
+ -Dfftw=disabled \
+ -Dgcov=false \
+ -Dglib=disabled \
+ -Dgsettings=disabled \
+ -Dgtk=disabled \
+ -Dhal-compat=false \
+ -Dipv6=$(call ptx/truefalse, PTXCONF_GLOBAL_IPV6) \
+ -Djack=disabled \
+ -Dlegacy-database-entry-format=false \
+ -Dlirc=disabled \
+ -Dman=false \
+ -Dmodlibexecdir=/usr/lib/pulse-$(PULSEAUDIO_VERSION)/modules \
+ -Dopenssl=disabled \
+ -Dorc=enabled \
+ -Dpadsplibdir= \
+ -Dpulsedsp-location= \
+ -Drunning-from-build-tree=false \
+ -Dsamplerate=disabled \
+ -Dsoxr=disabled \
+ -Dspeex=$(call ptx/endis, PTXCONF_PULSEAUDIO_SPEEX)d \
+ -Dsystem_group= \
+ -Dsystem_user= \
+ -Dsystemd=$(call ptx/endis, PTXCONF_PULSEAUDIO_SYSTEMD)d \
+ -Dsystemduserunitdir=/usr/lib/systemd/user \
+ -Dtests=false \
+ -Dudev=enabled \
+ -Dudevrulesdir=/lib/udev/rules.d \
+ -Dwebrtc-aec=disabled \
+ -Dx11=disabled \
+ -Dzshcompletiondir=
PULSEAUDIO_LDFLAGS := -Wl,-rpath,/usr/lib/pulseaudio:/usr/lib/pulse-$(PULSEAUDIO_VERSION)/modules
--
2.20.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-09-20 18:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-20 18:14 [ptxdist] [PATCH] pulseaudio: version bump 12.2 -> 13.0 Lucas Stach
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox