From: Ruben Kerkhof Date: Fri, 25 Dec 2015 10:19:29 +0000 (+0100) Subject: uuid plugin: make it work on NetBSD X-Git-Tag: collectd-5.6.0~87^2~1 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=92811dfcb772a4613b0938b010869cab536acc3e uuid plugin: make it work on NetBSD --- diff --git a/src/uuid.c b/src/uuid.c index 816e624a..a607d619 100644 --- a/src/uuid.c +++ b/src/uuid.c @@ -114,7 +114,7 @@ uuid_get_from_dmidecode(void) return (uuid); } -#if defined(__APPLE__) || defined(__FreeBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) static char * uuid_get_from_sysctlbyname(const char *name) { @@ -215,6 +215,9 @@ uuid_get_local(void) #elif defined(__FreeBSD__) if ((uuid = uuid_get_from_sysctlbyname("kern.hostuuid")) != NULL) return (uuid); +#elif defined(__NetBSD__) + if ((uuid = uuid_get_from_sysctlbyname("machdep.dmi.system-uuid")) != NULL) + return (uuid); #elif defined(__linux__) if ((uuid = uuid_get_from_file("/sys/class/dmi/id/product_uuid")) != NULL) return (uuid);