netstar pushed a commit to branch master. http://git.enlightenment.org/apps/evisum.git/commit/?id=279b0920baacc4846abd773bb65d2675a212fd83
commit 279b0920baacc4846abd773bb65d2675a212fd83 Author: Alastair Poole <nets...@gmail.com> Date: Mon Mar 1 22:01:23 2021 +0000 network: make it build. sleept ime --- src/bin/system/machine/network.bogox | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/system/machine/network.bogox b/src/bin/system/machine/network.bogox index 33f0b20..d44d23b 100644 --- a/src/bin/system/machine/network.bogox +++ b/src/bin/system/machine/network.bogox @@ -143,6 +143,10 @@ net_iface_t ** system_network_ifaces_get(int *n) { *n = 0; +#if defined(__linux__) return _linux_generic_network_status(n); +#else + return NULL; +#endif } --