diff options
Diffstat (limited to 'recipes-qt/qt5/qtbase/0011-tst_qlocale-Enable-QT_USE_FENV-only-on-glibc.patch')
-rw-r--r-- | recipes-qt/qt5/qtbase/0011-tst_qlocale-Enable-QT_USE_FENV-only-on-glibc.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtbase/0011-tst_qlocale-Enable-QT_USE_FENV-only-on-glibc.patch b/recipes-qt/qt5/qtbase/0011-tst_qlocale-Enable-QT_USE_FENV-only-on-glibc.patch new file mode 100644 index 00000000..b5323ee9 --- /dev/null +++ b/recipes-qt/qt5/qtbase/0011-tst_qlocale-Enable-QT_USE_FENV-only-on-glibc.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From 4ea227cda2a18b291b5da374600eb912959691e8 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 3 Sep 2017 10:11:50 -0700 | ||
4 | Subject: [PATCH] tst_qlocale: Enable QT_USE_FENV only on glibc | ||
5 | |||
6 | musl does not have feenableexcept function | ||
7 | |||
8 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
9 | --- | ||
10 | tests/auto/corelib/tools/qlocale/tst_qlocale.cpp | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp b/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp | ||
14 | index d424e60..3eae828 100644 | ||
15 | --- a/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp | ||
16 | +++ b/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp | ||
17 | @@ -46,7 +46,7 @@ | ||
18 | #include <private/qlocale_tools_p.h> | ||
19 | #include <qnumeric.h> | ||
20 | |||
21 | -#if defined(Q_OS_LINUX) && !defined(__UCLIBC__) | ||
22 | +#if defined(Q_OS_LINUX) && defined(__GLIBC__) | ||
23 | # define QT_USE_FENV | ||
24 | #endif | ||
25 | |||