initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
From 900b1827c55cc6020b3242640075174c2e6b12a5 Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Wed, 4 Aug 2021 22:16:40 +0200
|
||||
Subject: [PATCH] configure.ac: find sndfile through pkg-config
|
||||
|
||||
Find sndfile through pkg-config to retrieve sndfile dependencies such as
|
||||
flac and avoid the following static build failure:
|
||||
|
||||
/tmp/instance-3/output-1/host/lib/gcc/xtensa-buildroot-linux-uclibc/10.3.0/../../../../xtensa-buildroot-linux-uclibc/bin/ld: /tmp/instance-3/output-1/host/bin/../xtensa-buildroot-linux-uclibc/sysroot/usr/lib/libsndfile.a(libsndfile_la-flac.o): in function `flac_byterate':
|
||||
flac.c:(.text+0xfc): undefined reference to `FLAC__StreamDecoderErrorStatusString'
|
||||
|
||||
Fixes:
|
||||
- http://autobuild.buildroot.org/results/92ed30a6855ca11800b779718822bcba4a69c9a3
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Upstream status: https://github.com/mikebrady/shairport-sync/pull/1263]
|
||||
---
|
||||
configure.ac | 9 ++++++++-
|
||||
1 file changed, 8 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index f77087c5..9b982c51 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -304,7 +304,14 @@ AC_ARG_WITH(convolution, [AS_HELP_STRING([--with-convolution],[choose audio DSP
|
||||
if test "x$with_convolution" = "xyes" ; then
|
||||
AM_INIT_AUTOMAKE([subdir-objects])
|
||||
AC_DEFINE([CONFIG_CONVOLUTION], 1, [Include audio DSP convolution support.])
|
||||
- AC_CHECK_LIB([sndfile], [sf_open], , AC_MSG_ERROR(Convolution support requires the sndfile library -- libsndfile1-dev suggested!))
|
||||
+ if test "x${with_pkg_config}" = xyes ; then
|
||||
+ PKG_CHECK_MODULES(
|
||||
+ [sndfile], [sndfile],
|
||||
+ [CFLAGS="${sndfile_CFLAGS} ${CFLAGS}"
|
||||
+ LIBS="${sndfile_LIBS} ${LIBS}"], AC_MSG_ERROR(Convolution support requires the sndfile library -- libsndfile1-dev suggested!))
|
||||
+ else
|
||||
+ AC_CHECK_LIB([sndfile], [sf_open], , AC_MSG_ERROR(Convolution support requires the sndfile library -- libsndfile1-dev suggested!))
|
||||
+ fi
|
||||
fi
|
||||
AM_CONDITIONAL([USE_CONVOLUTION], [test "x$with_convolution" = "xyes"])
|
||||
|
||||
--
|
||||
2.30.2
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
From ad22edb303a470b6f9eda9fd9d3f588bb2eff8cb Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Fri, 15 Oct 2021 08:02:23 +0200
|
||||
Subject: [PATCH] configure.ac: fix build with automake 1.16.5
|
||||
|
||||
Fix the following build failure with convolution raised since automake
|
||||
1.16.5 and
|
||||
https://git.savannah.gnu.org/cgit/automake.git/commit/?id=f4a3a70f69e1dbccb6578f39ef47835098a04624:
|
||||
|
||||
configure.ac:305: error: AM_INIT_AUTOMAKE expanded multiple times
|
||||
/home/giuliobenetti/autobuild/run/instance-1/output-1/host/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from...
|
||||
configure.ac:6: the top level
|
||||
/home/giuliobenetti/autobuild/run/instance-1/output-1/host/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from...
|
||||
configure.ac:305: the top level
|
||||
|
||||
Fixes:
|
||||
- http://autobuild.buildroot.org/results/464148bdccb705d8992dc860262bfdeb01b7e2a1
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Upstream status: https://github.com/mikebrady/shairport-sync/pull/1314]
|
||||
---
|
||||
configure.ac | 3 +--
|
||||
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index f77087c5..aa533a2d 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
AC_PREREQ([2.50])
|
||||
AC_INIT([shairport-sync], [3.3.8], [4265913+mikebrady@users.noreply.github.com])
|
||||
-AM_INIT_AUTOMAKE
|
||||
+AM_INIT_AUTOMAKE([subdir-objects])
|
||||
AC_CONFIG_SRCDIR([shairport.c])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_PROG_RANLIB
|
||||
@@ -302,7 +302,6 @@ AM_CONDITIONAL([USE_PA], [test "x$with_pa" = "xyes"])
|
||||
# Look for Convolution flag
|
||||
AC_ARG_WITH(convolution, [AS_HELP_STRING([--with-convolution],[choose audio DSP convolution support])])
|
||||
if test "x$with_convolution" = "xyes" ; then
|
||||
- AM_INIT_AUTOMAKE([subdir-objects])
|
||||
AC_DEFINE([CONFIG_CONVOLUTION], 1, [Include audio DSP convolution support.])
|
||||
AC_CHECK_LIB([sndfile], [sf_open], , AC_MSG_ERROR(Convolution support requires the sndfile library -- libsndfile1-dev suggested!))
|
||||
fi
|
||||
--
|
||||
2.33.0
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
config BR2_PACKAGE_SHAIRPORT_SYNC
|
||||
bool "shairport-sync"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
select BR2_PACKAGE_ALSA_LIB
|
||||
select BR2_PACKAGE_ALSA_LIB_MIXER
|
||||
select BR2_PACKAGE_LIBCONFIG
|
||||
select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS
|
||||
select BR2_PACKAGE_POPT
|
||||
help
|
||||
Shairport Sync emulates an AirPort Express for the purpose
|
||||
of streaming audio from iTunes, iPods, iPhones, iPads and
|
||||
AppleTVs. Audio played by a Shairport Sync-powered device
|
||||
stays in synchrony with the source and thus with other
|
||||
devices that are playing the same source
|
||||
synchronously. Thus, for example, synchronised multi-room
|
||||
audio is possible without difficulty.
|
||||
|
||||
https://github.com/mikebrady/shairport-sync
|
||||
|
||||
if BR2_PACKAGE_SHAIRPORT_SYNC
|
||||
|
||||
config BR2_PACKAGE_SHAIRPORT_SYNC_CONVOLUTION
|
||||
bool "convolution support"
|
||||
select BR2_PACKAGE_LIBSNDFILE
|
||||
help
|
||||
Enable audio DSP convolution support.
|
||||
|
||||
config BR2_PACKAGE_SHAIRPORT_SYNC_DBUS
|
||||
bool "dbus support"
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
help
|
||||
Enable support for support for the MPRIS and native
|
||||
Shairport Sync D-Bus interface.
|
||||
|
||||
comment "shairport-sync dbus support needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_SHAIRPORT_SYNC_LIBSOXR
|
||||
bool "libsoxr support"
|
||||
select BR2_PACKAGE_LIBSOXR
|
||||
help
|
||||
Enable support for libsoxr, the SoX Resampler library.
|
||||
|
||||
Briefly, Shairport Sync keeps in step with the audio source
|
||||
by deleting or inserting frames of audio into the stream as
|
||||
needed. This "interpolation" is normally inaudible, but it
|
||||
can be heard in some circumstances. Libsoxr allows this
|
||||
interpolation to be done much more smoothly and subtly.
|
||||
|
||||
config BR2_PACKAGE_SHAIRPORT_SYNC_MQTT
|
||||
bool "mqtt support"
|
||||
depends on BR2_USE_MMU # avahi
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # avahi
|
||||
depends on !BR2_STATIC_LIBS # avahi
|
||||
select BR2_PACKAGE_AVAHI
|
||||
select BR2_PACKAGE_AVAHI_DAEMON
|
||||
select BR2_PACKAGE_DBUS
|
||||
select BR2_PACKAGE_MOSQUITTO
|
||||
help
|
||||
Enable support for the MQTT, the Message Queuing Telemetry
|
||||
Transport protocol.
|
||||
|
||||
comment "shairport-sync mqtt support needs a toolchain w/ dynamic library, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
endif
|
||||
|
||||
comment "shairport-sync needs a toolchain w/ C++, NPTL"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
||||
@@ -0,0 +1,27 @@
|
||||
#! /bin/sh
|
||||
|
||||
# Additional options that are passed to Shairport Sync
|
||||
OPTIONS="-d"
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
printf "Starting shairport-sync: "
|
||||
start-stop-daemon -S -q --exec /usr/bin/shairport-sync -- $OPTIONS
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
stop)
|
||||
printf "Stopping shairport-sync: "
|
||||
start-stop-daemon -K -q --exec /usr/bin/shairport-sync \
|
||||
-p /var/run/shairport-sync/shairport-sync.pid
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 c92f9a2d86dd1138673abc66e0010c94412ad6a46da8f36c3d538f4fa6b9faca shairport-sync-3.3.8.tar.gz
|
||||
sha256 1daaa904985807b7f9f2fa91f6b19f3faadf8df4e813f7451a691f89a6965e3f LICENSES
|
||||
@@ -0,0 +1,96 @@
|
||||
################################################################################
|
||||
#
|
||||
# shairport-sync
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SHAIRPORT_SYNC_VERSION = 3.3.8
|
||||
SHAIRPORT_SYNC_SITE = $(call github,mikebrady,shairport-sync,$(SHAIRPORT_SYNC_VERSION))
|
||||
|
||||
SHAIRPORT_SYNC_LICENSE = MIT, BSD-3-Clause
|
||||
SHAIRPORT_SYNC_LICENSE_FILES = LICENSES
|
||||
SHAIRPORT_SYNC_DEPENDENCIES = alsa-lib libconfig popt host-pkgconf
|
||||
|
||||
# git clone, no configure
|
||||
SHAIRPORT_SYNC_AUTORECONF = YES
|
||||
|
||||
SHAIRPORT_SYNC_CONF_OPTS = --with-alsa \
|
||||
--with-metadata \
|
||||
--with-pipe \
|
||||
--with-stdout
|
||||
|
||||
SHAIRPORT_SYNC_CONF_ENV += LIBS="$(SHAIRPORT_SYNC_CONF_LIBS)"
|
||||
|
||||
# Avahi or tinysvcmdns (shaiport-sync bundles its own version of tinysvcmdns).
|
||||
# Avahi support needs libavahi-client, which is built by avahi if avahi-daemon
|
||||
# and dbus is selected. Since there is no BR2_PACKAGE_LIBAVAHI_CLIENT config
|
||||
# option yet, use the avahi-daemon and dbus congig symbols to check for
|
||||
# libavahi-client.
|
||||
ifeq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_DBUS),yy)
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += avahi
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-avahi --without-tinysvcmdns
|
||||
else
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --without-avahi --with-tinysvcmdns
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBDAEMON),y)
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += libdaemon
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-libdaemon
|
||||
else
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --without-libdaemon
|
||||
endif
|
||||
|
||||
# OpenSSL or mbedTLS
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += openssl
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-ssl=openssl
|
||||
else
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += mbedtls
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-ssl=mbedtls
|
||||
SHAIRPORT_SYNC_CONF_LIBS += -lmbedx509 -lmbedcrypto
|
||||
ifeq ($(BR2_PACKAGE_MBEDTLS_COMPRESSION),y)
|
||||
SHAIRPORT_SYNC_CONF_LIBS += -lz
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SHAIRPORT_SYNC_CONVOLUTION),y)
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += libsndfile
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-convolution
|
||||
else
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --without-convolution
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SHAIRPORT_SYNC_DBUS),y)
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += libglib2
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-dbus-interface --with-mpris-interface
|
||||
else
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --without-dbus-interface --without-mpris-interface
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SHAIRPORT_SYNC_LIBSOXR),y)
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += libsoxr
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-soxr
|
||||
else
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --without-soxr
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SHAIRPORT_SYNC_MQTT),y)
|
||||
SHAIRPORT_SYNC_DEPENDENCIES += avahi dbus mosquitto
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --with-mqtt-client
|
||||
else
|
||||
SHAIRPORT_SYNC_CONF_OPTS += --without-mqtt-client
|
||||
endif
|
||||
|
||||
define SHAIRPORT_SYNC_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/shairport-sync \
|
||||
$(TARGET_DIR)/usr/bin/shairport-sync
|
||||
$(INSTALL) -D -m 0644 $(@D)/scripts/shairport-sync.conf \
|
||||
$(TARGET_DIR)/etc/shairport-sync.conf
|
||||
endef
|
||||
|
||||
define SHAIRPORT_SYNC_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -D -m 0755 package/shairport-sync/S99shairport-sync \
|
||||
$(TARGET_DIR)/etc/init.d/S99shairport-sync
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user