From 87e14eb7cb964467f6dda83dd17668609e68a203 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 6 Mar 2017 20:08:07 +0100 Subject: don't try to use system zlib if it's not enabled ... as that would error out unhelpfully. but hypothetically, there could be dynamic builds of system libpng and sqlite3 against a static zlib, so allow it. however, it's a tad unlikely, so default to -qt-libpng when using -qt-zlib (and -qt-sqlite3 is the default anyway). amends dab013804. Change-Id: I74c41e8d8a7ee1ba5add395842383d176e23f142 Reviewed-by: Lars Knoll Reviewed-by: Joerg Bornemann --- src/gui/configure.json | 5 ++++- src/sql/configure.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/gui/configure.json b/src/gui/configure.json index 81fa0db76f..88c9858a34 100644 --- a/src/gui/configure.json +++ b/src/gui/configure.json @@ -161,7 +161,9 @@ { "libs": "-llibpng", "condition": "config.msvc" }, { "libs": "-lpng", "condition": "!config.msvc" } ], - "use": "zlib" + "use": [ + { "lib": "zlib", "condition": "features.system-zlib" } + ] }, "mirclient": { "label": "Mir client libraries", @@ -667,6 +669,7 @@ "label": " Using system libpng", "disable": "input.libpng == 'qt'", "enable": "input.libpng == 'system'", + "autoDetect": "features.system-zlib", "condition": "features.png && libs.libpng", "output": [ "privateFeature" ] }, diff --git a/src/sql/configure.json b/src/sql/configure.json index 45b3fd9dd1..9555b64f39 100644 --- a/src/sql/configure.json +++ b/src/sql/configure.json @@ -117,7 +117,7 @@ "-lsqlite3" ], "use": [ - { "lib": "zlib", "condition": "!config.win32" } + { "lib": "zlib", "condition": "!config.win32 && features.system-zlib" } ] } }, -- cgit v1.2.3