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:
David E. O'Brien 1997-02-05 11:39:48 +00:00
parent 5979500afc
commit 5c69c267fa

View File

@ -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>