summaryrefslogtreecommitdiffstats
path: root/src/corelib/configure.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/configure.json')
-rw-r--r--src/corelib/configure.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/corelib/configure.json b/src/corelib/configure.json
index 7fca3137eb..0da3bff713 100644
--- a/src/corelib/configure.json
+++ b/src/corelib/configure.json
@@ -138,6 +138,11 @@
"type": "compile",
"test": "unix/cloexec"
},
+ "cxx11_random": {
+ "label": "C++11 <random>",
+ "type": "compile",
+ "test": "unix/cxx11_random"
+ },
"eventfd": {
"label": "eventfd",
"type": "compile",
@@ -208,6 +213,11 @@
"type": "compile",
"test": "unix/syslog"
},
+ "sys_auxv": {
+ "label": "sys/auxv.h",
+ "type": "compile",
+ "test": "unix/sys_auxv"
+ },
"xlocalescanprint": {
"label": "xlocale.h (or equivalents)",
"type": "compile",
@@ -242,6 +252,11 @@
"condition": "features.doubleconversion && libs.doubleconversion",
"output": [ "privateFeature" ]
},
+ "cxx11_random": {
+ "label": "C++11 <random>",
+ "condition": "tests.cxx11_random",
+ "output": [ "privateFeature" ]
+ },
"eventfd": {
"label": "eventfd",
"condition": "tests.eventfd",
@@ -394,6 +409,11 @@
"condition": "tests.syslog",
"output": [ "privateFeature" ]
},
+ "sys_auxv": {
+ "label": "sys/auxv.h",
+ "condition": "config.linux && tests.sys_auxv",
+ "output": [ "privateFeature" ]
+ },
"threadsafe-cloexec": {
"label": "Threadsafe pipe creation",
"condition": "tests.cloexec",
@@ -631,6 +651,11 @@ ensure that the IDEs they use either set QT_LOGGING_TO_CONSOLE to 1
or are able to read the logged output from journald, syslog or slog2."
},
{
+ "type": "warning",
+ "condition": "!config.win32 && !config.darwin && !config.bsd && !features.cxx11_random",
+ "message": "No high-quality PRNG available for QRandomGenerator fallback.\nIf the HW or OS RNG fails, Qt will abort execution."
+ },
+ {
"type": "error",
"condition": "input.doubleconversion == 'no' && !tests.xlocalescanprint",
"message": "Your C library does not provide sscanf_l or snprintf_l.