summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2020-06-13 17:44:45 +0200
committerJaroslav Kysela <perex@perex.cz>2020-06-13 21:28:04 +0200
commiteec95e69e5d0dcc16fd8872c1ad680265a96cce3 (patch)
treed89d4ac41d855e5c09bbe92d65a139cba36e70ca
parent6eb78d41a1688b14b458af4a57e7bcd92120c9fe (diff)
downloadalsa-lib-eec95e69e5d0dcc16fd8872c1ad680265a96cce3.tar.gz
dlmisc.c: fix uclibc build
RTLD_DL_LINKMAP & RTLD_DI_ORIGIN, are unsupported on uClibc: https://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng.git/tree/include/dlfcn.h#n106 This patch adds detection for uClibc because uClibc also defines __GLIBC__: https://lists.gnu.org/archive/html/bug-gnulib/2010-11/msg00280.html BugLink: https://github.com/alsa-project/alsa-lib/pull/58 From: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
-rw-r--r--src/dlmisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dlmisc.c b/src/dlmisc.c
index 5d672146..ca94b123 100644
--- a/src/dlmisc.c
+++ b/src/dlmisc.c
@@ -69,7 +69,7 @@ static inline void snd_dlpath_unlock(void) {}
int snd_dlpath(char *path, size_t path_len, const char *name)
{
#ifdef HAVE_LIBDL
-#ifdef __GLIBC__
+#if defined(__GLIBC__) && !defined(__UCLIBC__)
static int plugin_dir_set = 0;
snd_dlpath_lock();
if (!plugin_dir_set) {