giampaolo / psutil

Cross-platform lib for process and system monitoring in Python
BSD 3-Clause "New" or "Revised" License
10.22k stars 1.38k forks source link

Include net/if.h before net/if_dl.h #2361

Closed ryandesign closed 8 months ago

ryandesign commented 8 months ago

Summary

Description

In old versions of macOS, net/if_dl.h neglects to include sys/types.h, which results in build failure:

error: unknown type name 'u_char'; did you mean 'char'?

Including net/if.h first works around the problem because net/if.h includes sys/types.h.