diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-11-14 00:26:40 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-11-14 23:15:06 +0100 |
commit | b282351c13e7f5bca4865cbe0b9597dbc75cebb3 (patch) | |
tree | 4b44574cb3ed44ca8394a78bd217a4518aaea5ba /package/pixman/0001-check-fe-divbyzero.patch | |
parent | de2ea6ad54907c575120cf0d613f1a7b8a7162f3 (diff) | |
download | buildroot-b282351c13e7f5bca4865cbe0b9597dbc75cebb3.tar.gz buildroot-b282351c13e7f5bca4865cbe0b9597dbc75cebb3.zip |
package/pixman: bump version to 0.33.4
Removed patches applied upstream.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/pixman/0001-check-fe-divbyzero.patch')
-rw-r--r-- | package/pixman/0001-check-fe-divbyzero.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/pixman/0001-check-fe-divbyzero.patch b/package/pixman/0001-check-fe-divbyzero.patch deleted file mode 100644 index 01c6c96de6..0000000000 --- a/package/pixman/0001-check-fe-divbyzero.patch +++ /dev/null @@ -1,41 +0,0 @@ -Add a check for FE_DIVBYZERO - -Some architectures (namely Microblaze) do have fenv.h and -feenableexcept, but they don't have the FE_DIVBYZERO definition. This -patch adds a configure check for FE_DIVBYZERO, and only uses it if -it's available. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: b/configure.ac -=================================================================== ---- a/configure.ac -+++ b/configure.ac -@@ -838,6 +838,11 @@ - AC_DEFINE(HAVE_FEENABLEEXCEPT, 1, [Whether we have feenableexcept()]) - fi - -+AC_CHECK_DECL([FE_DIVBYZERO], [], [], [[#include <fenv.h>]]) -+if test x$ac_cv_have_decl_FE_DIVBYZERO = xyes; then -+ AC_DEFINE(HAVE_FEDIVBYZERO, 1, [Whether we have FE_DIVBYZERO]) -+fi -+ - AC_CHECK_FUNC(gettimeofday, have_gettimeofday=yes, have_gettimeofday=no) - AC_CHECK_HEADER(sys/time.h, have_sys_time_h=yes, have_sys_time_h=no) - if test x$have_gettimeofday = xyes && test x$have_sys_time_h = xyes; then -Index: b/test/utils.c -=================================================================== ---- a/test/utils.c -+++ b/test/utils.c -@@ -776,9 +776,11 @@ - { - #ifdef HAVE_FENV_H - #ifdef HAVE_FEENABLEEXCEPT -+#ifdef HAVE_FE_DIVBYZERO - feenableexcept (FE_DIVBYZERO); - #endif - #endif -+#endif - } - - void * |