From: Kamalesh Babulal Date: Mon, 27 Nov 2023 14:37:33 +0000 (+0530) Subject: include/Makefile: install systemd.h by default X-Git-Tag: v3.2.0~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=592dcdcf243576bd2517d3da9bc18990de08e37e;p=thirdparty%2Flibcgroup.git include/Makefile: install systemd.h by default Install systemd.h header file by default, as we have stub and defined versions of the systemd functions for both non-systemd and systemd enabled configurations. This will help packagers to ship package without systemd support (--enable-systemd=no). Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/include/Makefile.am b/include/Makefile.am index 23cebaac..4cb05529 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -2,8 +2,4 @@ nobase_include_HEADERS = libcgroup.h libcgroup/error.h libcgroup/init.h \ libcgroup/groups.h libcgroup/tasks.h \ libcgroup/iterators.h libcgroup/config.h \ - libcgroup/log.h libcgroup/tools.h - -if WITH_SYSTEMD -nobase_include_HEADERS += libcgroup/systemd.h -endif + libcgroup/log.h libcgroup/tools.h libcgroup/systemd.h