1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 13:58:49 +00:00

Issue #1829 - Fix psutil python extension on MacOS and potentially FreeBSD

Compilation failed due to missing sys/ioctl.h header on MacOS and FreeBSD. Call to function ioctl() with no prototype.  This was non-fatal due to the psutil component being optional.
This commit is contained in:
Brian Smith
2022-04-26 13:26:41 -05:00
committed by roytam1
parent 85468ffe86
commit b324b34441
+1
View File
@@ -23,6 +23,7 @@
#include <netdb.h>
#include <netinet/in.h>
#include <net/if_dl.h>
#include <sys/ioctl.h>
#endif
#if defined(__sun)