1From 592dcdcf243576bd2517d3da9bc18990de08e37e Mon Sep 17 00:00:00 2001 2From: Kamalesh Babulal <kamalesh.babulal@oracle.com> 3Date: Mon, 27 Nov 2023 20:07:33 +0530 4Subject: [PATCH 1/1] include/Makefile: install systemd.h by default 5 6Install systemd.h header file by default, as we have stub and defined 7versions of the systemd functions for both non-systemd and systemd 8enabled configurations. This will help packagers to ship package 9without systemd support (--enable-systemd=no). 10 11Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com> 12Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com> 13 14Upstream-Status: Backport [https://github.com/libcgroup/libcgroup/commit/592dcdcf243576bd2517d3da9bc18990de08e37e] 15 16Signed-off-by: Adriaan Schmidt <adriaan.schmidt@siemens.com> 17--- 18 include/Makefile.am | 6 +----- 19 1 file changed, 1 insertion(+), 5 deletions(-) 20 21diff --git a/include/Makefile.am b/include/Makefile.am 22index 23cebaac..4cb05529 100644 23--- a/include/Makefile.am 24+++ b/include/Makefile.am 25@@ -2,8 +2,4 @@ 26 nobase_include_HEADERS = libcgroup.h libcgroup/error.h libcgroup/init.h \ 27 libcgroup/groups.h libcgroup/tasks.h \ 28 libcgroup/iterators.h libcgroup/config.h \ 29- libcgroup/log.h libcgroup/tools.h 30- 31-if WITH_SYSTEMD 32-nobase_include_HEADERS += libcgroup/systemd.h 33-endif 34+ libcgroup/log.h libcgroup/tools.h libcgroup/systemd.h 35-- 362.39.2 37 38