summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/core-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulsecore/core-util.c')
-rw-r--r--src/pulsecore/core-util.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c
index 0d243ee6..ba3a9b21 100644
--- a/src/pulsecore/core-util.c
+++ b/src/pulsecore/core-util.c
@@ -2631,3 +2631,24 @@ char *pa_realpath(const char *path) {
return t;
}
+
+pa_bool_t pa_linux_newer_than(unsigned major, unsigned minor, unsigned micro) {
+
+#ifdef __linux__
+ unsigned _major, _minor, _micro;
+ struct utsname u;
+
+ pa_assert_se(uname(&u) == 0);
+
+ if (sscanf(u.release, "%u.%u.%u", &_major, &_minor, &_micro) != 3)
+ return FALSE;
+
+ return
+ (_major > major) ||
+ (_major == major && _minor > minor) ||
+ (_major == major && _minor == minor && _micro > micro);
+
+#endif
+
+ return FALSE;
+}