mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
Changelog: - po: add Korean translations - alsactl: fix compilation when building in a subdir - reshuffle included files to include config.h as first - github: update build.yml - aseqdump: fix MIDI 2.0 code - it compiles now - gitcompile: set more verbose compilation warnings - nhlt-dmic-info: fix the verbose compilation warnings for latest gcc - alsaucm: fix the verbose compilation warnings for latest gcc - aplaymidi: fix the verbose compilation warnings for latest gcc - aseqnet: fix the verbose compilation warnings for latest gcc - aseqdump: fix the verbose compilation warnings for latest gcc - aconnect: fix the verbose compilation warnings for latest gcc - speaker-test: fix the verbose compilation warnings for latest gcc - amidi: fix the verbose compilation warnings for latest gcc - bat: fix the verbose compilation warnings for latest gcc - iecset: fix the verbose compilation warnings for latest gcc - alsamixer: fix the verbose compilation warnings for latest gcc - alsaloop: fix the verbose compilation warnings for latest gcc - axfer: fix the verbose compilation warnings for latest gcc - alsactl: fix the verbose compilation warnings for latest gcc - amixer: fix the verbose compilation warnings for latest gcc - aplay: fix the verbose compilation warnings for latest gcc - topology: fix the verbose compilation warnings for latest gcc - alsactl: fix the copy-n-paste typo (SND_RAWMIDI_STREAM_*) - aseqdump: Add options to switch view mode - aseqdump: Correct wrong channel number - aseqdump: Align outputs of UMP MIDI 1.0 with legacy MIDI 1.0 - speaker-test: allow large buffer and period time setup - up to 100 seconds - topology: plugins: nhlt: remove dmic error print - Topology: NHLT: Intel: Update DMIC FIR coefficients - topology: nhlt: intel: support more device types and directions - topology: pre-processor: Add support for CombineArrays - alsactl: add define to compile with glibc 2.38 - topology: plugins: nhlt: set dmic stereo mode only in hw version 1 - aplaymidi: Add UMP support - aconnect: Add UMP support - aseqdump: Add UMP support - nhlt: add nhlt-dmic-info utility (From OE-Core rev: 24b7cd2e58c0a2f48cefb09a3363fd982d50f575) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
860 B
Diff
32 lines
860 B
Diff
From d8a8a9affd5726827ef3995652248595b4a8c87e Mon Sep 17 00:00:00 2001
|
|
From: Michael Opdenacker <michael.opdenacker@bootlin.com>
|
|
Date: Tue, 19 Sep 2023 11:27:46 +0200
|
|
Subject: [PATCH] topology.c: include locale.h
|
|
|
|
To fix an issue compiling with the musl C library:
|
|
topology.c: error: 'LC_ALL' undeclared
|
|
|
|
https://github.com/alsa-project/alsa-utils/issues/239
|
|
|
|
Upstream-Status: Submitted [alsa-devel@alsa-project.org]
|
|
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
|
|
---
|
|
topology/topology.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/topology/topology.c b/topology/topology.c
|
|
index 1840ffe..5d03a8b 100644
|
|
--- a/topology/topology.c
|
|
+++ b/topology/topology.c
|
|
@@ -32,6 +32,7 @@
|
|
#include <sys/stat.h>
|
|
#include <getopt.h>
|
|
#include <assert.h>
|
|
+#include <locale.h>
|
|
|
|
#include <alsa/asoundlib.h>
|
|
#include <alsa/topology.h>
|
|
--
|
|
2.34.1
|
|
|