diff options
author | Pino Toscano <[email protected]> | 2024-10-06 10:15:20 +0200 |
---|---|---|
committer | Pino Toscano <[email protected]> | 2024-10-07 21:52:05 +0200 |
commit | 0c1348ae85173f32f81661ef06b73a1a45584da9 (patch) | |
tree | 831a660ecc632c09521386aef55f0210645b5539 | |
parent | cfa106c7d48167c1ae36dd56391de801758a0383 (diff) |
CMake/Network: enable system publicsuffix autodetection also on Hurd
publicsuffix may be available as system package also on GNU/Hurd
distributions (e.g. Debian).
Change-Id: I8ffd9c7dba5a36e073da48d1539b117e40cfa827
Reviewed-by: Alexandru Croitor <[email protected]>
Reviewed-by: Alexey Edelev <[email protected]>
-rw-r--r-- | src/network/configure.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/configure.cmake b/src/network/configure.cmake index 003862c73bd..4d4db9d256c 100644 --- a/src/network/configure.cmake +++ b/src/network/configure.cmake @@ -353,7 +353,7 @@ qt_feature("publicsuffix-qt" PRIVATE qt_feature("publicsuffix-system" PRIVATE LABEL " System publicsuffix database" CONDITION QT_FEATURE_topleveldomain - AUTODETECT LINUX + AUTODETECT LINUX OR HURD ENABLE INPUT_publicsuffix STREQUAL "system" OR INPUT_publicsuffix STREQUAL "all" DISABLE INPUT_publicsuffix STREQUAL "qt" ) |