aports/testing/hardinfo/uclibc.patch
2011-04-16 22:39:46 +00:00

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 *