Add the condition !defined(USG) to the logic to include <sys/param.h>
There is still some debate if this is yet the proper way to handle <sys/param.h>, but this is certainly closer than what I had to start with. Submitted by: Warner Losh <imp@village.org>
This commit is contained in:
parent
ccae32fd7e
commit
cfa46d6a38
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=1123
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ the ports collection.
|
|||
is already included; if not, add the code:
|
||||
|
||||
<tscreen><verb>
|
||||
#ifdef (defined(__unix__) || defined(unix))
|
||||
#ifdef (defined(__unix__) || defined(unix)) && !defined(USG)
|
||||
#include <sys/param.h>
|
||||
#endif
|
||||
</verb></tscreen>
|
||||
|
|
Loading…
Reference in a new issue