diff --git a/config.tests/xml2/xml2.cpp b/config.tests/xml2/xml2.cpp index 17c3e3ca02524eb45217c4e69cd975ede862ecba..93bc80c97e717876a4ff5ffb285ad1387f070c42 100644 --- a/config.tests/xml2/xml2.cpp +++ b/config.tests/xml2/xml2.cpp @@ -30,6 +30,9 @@ #if defined(LIBXML_CATALOG_ENABLED) #error "libxml catalog enabled" #endif +#if !defined(LIBXML_ICU_ENABLED) +#error "libxml icu not enabled" +#endif int main(int argc, char **argv) { diff --git a/configure.json b/configure.json index d1ae781a619560e729492208419baf1c3ab396e9..cd8098c562de6ab5359c943e058c3d01f73c1699 100644 --- a/configure.json +++ b/configure.json @@ -288,12 +288,8 @@ "label": "glibc > 2.16", "type": "detectGlibc" }, - "webengine-libxml2-with-icuuc": { - "label" : "libxml2 configured with icuuc", - "type": "detectLibXml2WithIcuuc" - }, - "webengine-libxml2-without-catalog-support": { - "label" : "libxml2 configured without catalog support", + "webengine-libxml2-compatible": { + "label" : "compatible system libxml2", "test" : "xml2", "type": "compile" }, @@ -587,8 +583,7 @@ "label": "libxml2 and libxslt", "condition": "config.unix && libs.webengine-libxml2 - && tests.webengine-libxml2-with-icuuc - && tests.webengine-libxml2-without-catalog-support", + && tests.webengine-libxml2-compatible", "output": [ "privateFeature" ] }, "webengine-system-lcms2" : { diff --git a/configure.pri b/configure.pri index db36a7ff7371cd39e32657e4bba07833502e9095..82a7de227b3ac57314967b94b553ef2d2e097bda 100644 --- a/configure.pri +++ b/configure.pri @@ -147,16 +147,6 @@ defineTest(qtConfTest_embedded) { return(false) } -defineTest(qtConfTest_detectLibXml2WithIcuuc) { - pkgConfig = $$qtConfPkgConfig() - !isEmpty(pkgConfig) { - qtRunLoggedCommand("$$pkgConfig --libs --static libxml-2.0", xmllibs) - contains(xmllibs,".*-licuuc.*"):return(true) - qtLog("System libxml2 is not configured with ICU") - } - return(false) -} - defineTest(qtConfTest_detectHostPkgConfig) { PKG_CONFIG = $$qtConfPkgConfig(true) isEmpty(PKG_CONFIG) {