diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-03-14 01:38:19 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-14 01:49:44 +0100 |
commit | 66cdd0f2d0670b054bd27dad16fcb5838b11dde3 (patch) | |
tree | aacbe786c7403a6f4f0782b4d6403d0f961b1d9c /Makefile.am | |
parent | bcdbbd7ee1b7dc6ec19261c957ed11e5e1ed1aaf (diff) |
logind: automatically remove SysV + POSIX IPC objects when the users owning them fully log out
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 8dcbaca3d6..311ff09d4e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -795,7 +795,9 @@ libsystemd_shared_la_SOURCES = \ src/shared/bus-label.h \ src/shared/gpt.h \ src/shared/generator.h \ - src/shared/generator.c + src/shared/generator.c \ + src/shared/clean-ipc.h \ + src/shared/clean-ipc.c nodist_libsystemd_shared_la_SOURCES = \ src/shared/errno-from-name.h \ @@ -1176,7 +1178,8 @@ manual_tests += \ test-cgroup \ test-install \ test-watchdog \ - test-log + test-log \ + test-ipcrm tests += \ test-job-type \ @@ -1392,6 +1395,13 @@ test_log_SOURCES = \ test_log_LDADD = \ libsystemd-core.la +test_ipcrm_SOURCES = \ + src/test/test-ipcrm.c + +test_ipcrm_LDADD = \ + libsystemd-shared.la \ + -lrt + test_ellipsize_SOURCES = \ src/test/test-ellipsize.c |