mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
cmake: fix FindSystemd.cmake
Apparently, recent version of CMake made PkgConfig stuff scooped and we need to call find_package(PkgConfig) in FindSystemd.cmake too, the call in FindLibtorrentRasterbar.cmake, that is always used first, is not enough now.
This commit is contained in:
@@ -3,6 +3,9 @@
|
|||||||
# sets variables
|
# sets variables
|
||||||
# SYSTEMD_FOUND
|
# SYSTEMD_FOUND
|
||||||
# SYSTEMD_SERVICES_INSTALL_DIR
|
# SYSTEMD_SERVICES_INSTALL_DIR
|
||||||
|
|
||||||
|
find_package(PkgConfig QUIET REQUIRED)
|
||||||
|
|
||||||
if (NOT SYSTEMD_FOUND)
|
if (NOT SYSTEMD_FOUND)
|
||||||
pkg_check_modules(SYSTEMD "systemd")
|
pkg_check_modules(SYSTEMD "systemd")
|
||||||
endif(NOT SYSTEMD_FOUND)
|
endif(NOT SYSTEMD_FOUND)
|
||||||
|
|||||||
Reference in New Issue
Block a user