mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-01 20:01:47 +02:00
23 lines
510 B
Diff
23 lines
510 B
Diff
diff --git a/arch/linux/common/os.h b/arch/linux/common/os.h
|
|
index f3c2c2d..78bc78b 100644
|
|
--- a/arch/linux/common/os.h
|
|
+++ b/arch/linux/common/os.h
|
|
@@ -49,6 +49,9 @@ err:
|
|
static gchar *
|
|
get_libc_version(void)
|
|
{
|
|
+#if defined(__UCLIBC__)
|
|
+ return g_strdup("uClibc");
|
|
+#else
|
|
FILE *libc;
|
|
gchar buf[256], *tmp, *p;
|
|
|
|
@@ -70,6 +73,7 @@ get_libc_version(void)
|
|
strstr(buf, " stable ") ? "" : "un");
|
|
err:
|
|
return g_strdup("Unknown");
|
|
+#endif
|
|
}
|
|
|
|
static gchar *
|