aboutsummaryrefslogtreecommitdiffstats
path: root/testing/hardinfo/uclibc.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-04-15 09:12:55 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-04-16 22:39:46 +0000
commit5b91c245552abbbf05a0d7960444b9ca63a33e1c (patch)
tree9c3301f36f9ab41f3ef7dbb44e4cf45eba2adfea /testing/hardinfo/uclibc.patch
parente88f93b4503ed7e519ed17bbfce926503a3a37a1 (diff)
downloadaports-5b91c245552abbbf05a0d7960444b9ca63a33e1c.tar.bz2
aports-5b91c245552abbbf05a0d7960444b9ca63a33e1c.tar.xz
testing/hardinfo: alpine and uclibc fixes
Diffstat (limited to 'testing/hardinfo/uclibc.patch')
-rw-r--r--testing/hardinfo/uclibc.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/hardinfo/uclibc.patch b/testing/hardinfo/uclibc.patch
new file mode 100644
index 0000000000..c24e9ea1a1
--- /dev/null
+++ b/testing/hardinfo/uclibc.patch
@@ -0,0 +1,22 @@
+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 *