Change systemd-devel package name 00/252900/1 accepted/tizen_6.5_unified accepted/tizen_7.0_unified accepted/tizen_7.0_unified_hotfix accepted/tizen_8.0_unified accepted/tizen_unified tizen tizen_6.5 tizen_7.0 tizen_7.0_hotfix tizen_8.0 accepted/tizen/6.5/unified/20211028.122246 accepted/tizen/7.0/unified/20221110.062614 accepted/tizen/7.0/unified/hotfix/20221116.105620 accepted/tizen/8.0/unified/20231005.093652 accepted/tizen/unified/20210210.130308 submit/tizen/20210209.102419 submit/tizen_6.5/20211028.162401 tizen_6.5.m2_release tizen_7.0_m2_release tizen_8.0_m2_release
authorINSUN PYO <insun.pyo@samsung.com>
Wed, 3 Feb 2021 04:39:46 +0000 (13:39 +0900)
committerINSUN PYO <insun.pyo@samsung.com>
Wed, 3 Feb 2021 04:39:46 +0000 (13:39 +0900)
Change-Id: I9308f52939a943ecf5e2cc2a7e7d793a580ca150

packaging/nice-lad.spec
src/CMakeLists.txt

index b290e6e1e546c8c0f8c54121cec722aa62fcbd39..4e5adc27c492b7e6780ecee055c10c24caf177e4 100644 (file)
@@ -11,7 +11,7 @@ Source1003:    %{name}-docs.manifest
 BuildRequires: boost-devel
 BuildRequires: cmake
 BuildRequires: pkgconfig(audit)
-BuildRequires: pkgconfig(libsystemd-journal)
+BuildRequires: pkgconfig(libsystemd)
 BuildRequires: pkgconfig(security-manager)
 
 %{?systemd_requires}
index ababe7ed5eb72bffa6a88fdc44afddb2e17091ae..854e49c2cfc0e0c266befee1ca5af7d65dda2c53 100644 (file)
@@ -21,9 +21,9 @@ OPTION(WITH_SECURITY_MANAGER "Use Security Manager to obtain resource groups" OF
 OPTION(WITH_JOURNALD "Use journald to log denials. Syslog will be used otherwise" OFF)
 
 IF(WITH_JOURNALD)
-    PKG_CHECK_MODULES(journald REQUIRED libsystemd-journal)
+    PKG_CHECK_MODULES(journald REQUIRED libsystemd)
 ELSE(WITH_JOURNALD) # journald may still be possibly used for informational logging
-    PKG_CHECK_MODULES(journald QUIET libsystemd-journal)
+    PKG_CHECK_MODULES(journald QUIET libsystemd)
 ENDIF(WITH_JOURNALD)
 
 IF(journald_FOUND)