- I've attempted to compile the Nimble package manager on OpenBSD, but I think there's an issue with the std library, specifically with asyncdispatch.nim, when it gets down to compiling the generated C code I get this error:
/usr/include/sys/event.h:56: error: expected specifier-qualifier-list before 'u_short'
Does anyone happen to know why the generated C code hasn't had u_short defined yet?
*** EDIT: This was an OpenBSD error not a Nimble/Nim one, <sys/types.h> hadn't been included in <sys/event.h> for whatever reason, and that's where u_short is defined. Got it fixed, nimble compiles perfectly now.