FreeBSD 4.x was released more than a decade ago (the project itself only
authorVincent Torri <vincent.torri@gmail.com>
Wed, 16 May 2012 14:16:37 +0000 (14:16 +0000)
committerVincent Torri <vincent.torri@gmail.com>
Wed, 16 May 2012 14:16:37 +0000 (14:16 +0000)
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

legacy/ecore/src/lib/ecore/Ecore.h

index e30918a..2e93edf 100644 (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