Add FreeBSD support for netspeeds, entropy and ip components - slstatus - status monitor
HTML git clone git://git.suckless.org/slstatus
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 86849d295b1eb9e18746d8a4fa196fe7b9dce0dc
DIR parent b6d0bd2fe45283b24e3e69a61671bd3ac615a9b4
HTML Author: Michael Buch <michaelbuch12@gmail.com>
Date: Wed, 30 Jan 2019 11:21:54 +0000
Add FreeBSD support for netspeeds, entropy and ip components
Diffstat:
M components/entropy.c | 2 +-
M components/ip.c | 3 +++
M components/netspeeds.c | 2 +-
3 files changed, 5 insertions(+), 2 deletions(-)
---
DIR diff --git a/components/entropy.c b/components/entropy.c
@@ -17,7 +17,7 @@
return bprintf("%ju", num);
}
-#elif defined(__OpenBSD__)
+#elif defined(__OpenBSD__) | defined(__FreeBSD__)
const char *
entropy(void)
{
DIR diff --git a/components/ip.c b/components/ip.c
@@ -6,6 +6,9 @@
#if defined(__OpenBSD__)
#include <sys/types.h>
#include <sys/socket.h>
+#elif defined(__FreeBSD__)
+ #include <netinet/in.h>
+ #include <sys/socket.h>
#endif
#include "../util.h"
DIR diff --git a/components/netspeeds.c b/components/netspeeds.c
@@ -58,7 +58,7 @@
return fmt_human((txbytes - oldtxbytes) * 1000 / interval,
1024);
}
-#elif defined(__OpenBSD__)
+#elif defined(__OpenBSD__) | defined(__FreeBSD__)
#include <string.h>
#include <ifaddrs.h>
#include <sys/types.h>