FreeBSD 4.x was released more than a decade ago (the project itself only

supports FreeBSD >= 7 these days), so the check for __FreeBSD_version >=
420001 is not necessary anymore (plus it probably never worked, as that
macro is defined in sys/param.h, which is not included prior to the
check).

Patch by Raphael Kubo da Costa



SVN revision: 71172
This commit is contained in:
Vincent Torri 2012-05-16 14:16:37 +00:00
parent a2c7fa2dcc
commit 5f389075b7
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ sudo make install
#ifdef _WIN32
# include <winsock2.h>
#elif (defined (__FreeBSD__) && (__FreeBSD_version >= 420001)) || defined (__OpenBSD__)
#elif defined (__FreeBSD__) || defined (__OpenBSD__)
# include <sys/select.h>
# include <signal.h>
#else