From: caro Date: Wed, 16 May 2012 14:16:37 +0000 (+0000) Subject: FreeBSD 4.x was released more than a decade ago (the project itself only X-Git-Tag: 2.0_alpha~25^2~109 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30e35ea63597149ea3c7d4ff17cd95058c0c3244;p=framework%2Fuifw%2Fecore.git 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 git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@71172 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore/Ecore.h b/src/lib/ecore/Ecore.h index e30918a..2e93edf 100644 --- a/src/lib/ecore/Ecore.h +++ b/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