From 5f389075b77533ab96580c2792b0d48d851e97ac Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 16 May 2012 14:16:37 +0000 Subject: [PATCH] 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 --- legacy/ecore/src/lib/ecore/Ecore.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/ecore/src/lib/ecore/Ecore.h b/legacy/ecore/src/lib/ecore/Ecore.h index e30918a..2e93edf 100644 --- a/legacy/ecore/src/lib/ecore/Ecore.h +++ b/legacy/ecore/src/lib/ecore/Ecore.h @@ -352,7 +352,7 @@ sudo make install #ifdef _WIN32 # include -#elif (defined (__FreeBSD__) && (__FreeBSD_version >= 420001)) || defined (__OpenBSD__) +#elif defined (__FreeBSD__) || defined (__OpenBSD__) # include # include #else -- 2.7.4