-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [dbus] Fix features * [dbus] Use port libsystemd [skip actions] * [dbus] Fix libsystemd dependency * [dbus] libsystemd include dir via target * [freerdp] Disable libsystemd
- Loading branch information
Showing
8 changed files
with
58 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index d3ec71b..932066a 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -141,6 +141,10 @@ if(DBUS_LINUX) | ||
if(ENABLE_SYSTEMD AND SYSTEMD_FOUND) | ||
set(DBUS_BUS_ENABLE_SYSTEMD ON) | ||
set(HAVE_SYSTEMD ${SYSTEMD_FOUND}) | ||
+ pkg_check_modules(SYSTEMD libsystemd IMPORTED_TARGET) | ||
+ set(SYSTEMD_LIBRARIES PkgConfig::SYSTEMD CACHE INTERNAL "") | ||
+ else() | ||
+ set(SYSTEMD_LIBRARIES "" CACHE INTERNAL "") | ||
endif() | ||
option(ENABLE_USER_SESSION "enable user-session semantics for session bus under systemd" OFF) | ||
set(DBUS_ENABLE_USER_SESSION ${ENABLE_USER_SESSION}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters