package/alsa-lib: bump version to 1.2.7.1

Changelog: https://www.alsa-project.org/wiki/Changes_v1.2.7_v1.2.7.1

Removed patch which was applied upstream:
92fff4e9d0

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls 2022-07-05 19:11:48 +02:00 committed by Peter Korsgaard
parent 3ad7ba90c0
commit 73491bf4ec
3 changed files with 2 additions and 42 deletions

View File

@ -1,40 +0,0 @@
From b7c0169a62d4e6ad1a0a9de4ef8ae8089ee98872 Mon Sep 17 00:00:00 2001
From: Bernd Kuhls <bernd.kuhls@t-online.de>
Date: Sat, 11 Jun 2022 19:12:19 +0200
Subject: [PATCH] output: include stdarg.h
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Fixes a build error with alsa-utils when build with a uClibc toolchain:
alsa-utils/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/alsa/output.h:75:66:
error: unknown type name va_list
75 | int snd_output_vprintf(snd_output_t *output, const char *format, va_list args);
| ^~~~~~~
alsa-utils/host/x86_64-buildroot-linux-uclibc/sysroot/usr/include/alsa/output.h:1:1:
note: va_list is defined in header <stdarg.h>; did you forget to #include <stdarg.h>?
Patch sent upstream: https://github.com/alsa-project/alsa-lib/pull/237
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
include/output.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/output.h b/include/output.h
index 4a970dc4..5e16420b 100644
--- a/include/output.h
+++ b/include/output.h
@@ -28,6 +28,8 @@
#ifndef __ALSA_OUTPUT_H
#define __ALSA_OUTPUT_H
+#include <stdarg.h>
+
#ifdef __cplusplus
extern "C" {
#endif
--
2.30.2

View File

@ -1,4 +1,4 @@
# Locally calculated
sha256 8814e61f7ec6812c76e23a85cab00e0b0d3bba40816af36b726beb1bc04c74a7 alsa-lib-1.2.7.tar.bz2
sha256 046dc42dfcfad269217be05954686137e5e7397f3041372f8c6dcd7d79461e61 alsa-lib-1.2.7.1.tar.bz2
sha256 32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b COPYING
sha256 bfe16cf823bcff261fc6a062c07ee96660e3c39678f42f39a788a68dbc234ced aserver/COPYING

View File

@ -4,7 +4,7 @@
#
################################################################################
ALSA_LIB_VERSION = 1.2.7
ALSA_LIB_VERSION = 1.2.7.1
ALSA_LIB_SOURCE = alsa-lib-$(ALSA_LIB_VERSION).tar.bz2
ALSA_LIB_SITE = https://www.alsa-project.org/files/pub/lib
ALSA_LIB_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (aserver)