blob: 0f945a3d5cce0f99fc88def43ad31ea63baee3c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- mkspecs/features/configure.prf.orig 2018-11-27 04:10:38 UTC
+++ mkspecs/features/configure.prf
@@ -22,7 +22,7 @@ defineTest(runConfigure) {
return(false)
}
- linux:contains(QT_CONFIG,no-pkg-config) {
+ unix:contains(QT_CONFIG,no-pkg-config) {
skipBuild("pkg-config is required")
return(false)
}
@@ -64,17 +64,17 @@ defineTest(runConfigure) {
return(false);
}
- linux {
+ unix {
!qtConfig(webengine-host-pkg-config) {
skipBuild("Host pkg-config is required")
return(false)
}
- !qtConfig(webengine-system-glibc) {
- skipBuild("A suitable version of libc could not be found. See: https://sourceware.org/bugzilla/show_bug.cgi?id=14898")
- return(false)
- }
+ #!qtConfig(webengine-system-glibc) {
+ # skipBuild("A suitable version of libc could not be found. See: https://sourceware.org/bugzilla/show_bug.cgi?id=14898")
+ # return(false)
+ #}
QT_FOR_CONFIG += gui-private
|