From 116b9fe03ff320ebada8083552a51c564a0c8079 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Sat, 22 Jul 2023 15:44:55 +0000 Subject: [PATCH] alsactl: add define to compile with glibc 2.38 --- .../alsa-utils/patches/alsa-utils-PR225.patch | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 packages/audio/alsa-utils/patches/alsa-utils-PR225.patch diff --git a/packages/audio/alsa-utils/patches/alsa-utils-PR225.patch b/packages/audio/alsa-utils/patches/alsa-utils-PR225.patch new file mode 100644 index 0000000000..b2cd435de7 --- /dev/null +++ b/packages/audio/alsa-utils/patches/alsa-utils-PR225.patch @@ -0,0 +1,36 @@ +From f912b09ec2737e4a479396f4696f7a97213fd3d0 Mon Sep 17 00:00:00 2001 +From: Rudi Heitbaum +Date: Sat, 22 Jul 2023 15:36:09 +0000 +Subject: [PATCH] alsactl: add define to compile with glibc 2.38 + +strlcat and strlcpy have been added to glibc 2.38. +update the defines to use the glibc versions, and not conflict with +string.h. + +ref: +- https://sourceware.org/git/?p=glibc.git;a=commit;h=454a20c8756c9c1d55419153255fc7692b3d2199 +--- + alsactl/init_sysdeps.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/alsactl/init_sysdeps.c b/alsactl/init_sysdeps.c +index 3aca1b4..f09b1ae 100644 +--- a/alsactl/init_sysdeps.c ++++ b/alsactl/init_sysdeps.c +@@ -18,6 +18,7 @@ + */ + + #if defined(__GLIBC__) && !(defined(__UCLIBC__) && defined(__USE_BSD)) ++#if !(__GLIBC_PREREQ(2, 38)) + static size_t strlcpy(char *dst, const char *src, size_t size) + { + size_t bytes = 0; +@@ -60,4 +61,5 @@ static size_t strlcat(char *dst, const char *src, size_t size) + *q = '\0'; + return bytes; + } ++#endif /* !(__GLIBC_PREREQ(2, 38)) */ + #endif /* __GLIBC__ */ +-- +2.34.1 +