diff options
author | Michael Buch <michaelbuch12@gmail.com> | 2019-01-30 11:21:54 +0000 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2019-02-07 12:23:01 +0100 |
commit | 86849d295b1eb9e18746d8a4fa196fe7b9dce0dc (patch) | |
tree | 1e29c67d345161218e1ffb88bc6b5338590b3dc7 /components | |
parent | b6d0bd2fe45283b24e3e69a61671bd3ac615a9b4 (diff) |
Add FreeBSD support for netspeeds, entropy and ip components
Diffstat (limited to 'components')
-rw-r--r-- | components/entropy.c | 2 | ||||
-rw-r--r-- | components/ip.c | 3 | ||||
-rw-r--r-- | components/netspeeds.c | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/components/entropy.c b/components/entropy.c index 4033ffd..2a485de 100644 --- 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) { diff --git a/components/ip.c b/components/ip.c index a7b1bfd..70724eb 100644 --- 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" diff --git a/components/netspeeds.c b/components/netspeeds.c index 02c030e..0029177 100644 --- 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> |