You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was recently trying to build latest bmake on minix 3.2.0 and found it necessary to add -D_NETBSD_SOURCE to CPPFLAGS else many headers did not work correctly.
In some headers I see #if defined(_NETBSD_SOURCE) || defined(__minix) but others like sys/socket.h only check for _NETBSD_SOURCE.
I also found it necessary to tweak the filtering of several unit-tests due to seemingly gratuitous differences in error messages like file name too long rather than File name too long and no such file or directory rather than. No such....
The text was updated successfully, but these errors were encountered:
I was recently trying to build latest bmake on minix 3.2.0 and found it necessary to add
-D_NETBSD_SOURCE
toCPPFLAGS
else many headers did not work correctly.In some headers I see
#if defined(_NETBSD_SOURCE) || defined(__minix)
but others like sys/socket.h only check for_NETBSD_SOURCE
.I also found it necessary to tweak the filtering of several unit-tests due to seemingly gratuitous differences in error messages like
file name too long
rather thanFile name too long
andno such file or directory
rather than.No such....
The text was updated successfully, but these errors were encountered: