diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-12-28 03:03:50 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-12-28 03:04:29 +0100 |
commit | 08bcebf36eb85f5e75b968de8c648e6614cc534b (patch) | |
tree | f81cd12d77c240ea3ea873d59890da755aae0c12 /Makefile.am | |
parent | 79ccff06c19c0ee74b9744928bc40f2ce658fde2 (diff) |
shared: add simplistic XML parser for usage in the D-Bus policy language compat parser
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 7556db8d70..bc6fa1a476 100644 --- a/Makefile.am +++ b/Makefile.am @@ -779,7 +779,9 @@ libsystemd_shared_la_SOURCES = \ src/shared/syscall-list.c \ src/shared/syscall-list.h \ src/shared/audit.c \ - src/shared/audit.h + src/shared/audit.h \ + src/shared/xml.c \ + src/shared/xml.h nodist_libsystemd_shared_la_SOURCES = \ src/shared/errno-from-name.h \ @@ -1156,7 +1158,8 @@ tests += \ test-hashmap \ test-list \ test-tables \ - test-device-nodes + test-device-nodes \ + test-xml EXTRA_DIST += \ test/sched_idle_bad.service \ @@ -1258,6 +1261,12 @@ test_hashmap_SOURCES = \ test_hashmap_LDADD = \ libsystemd-core.la +test_xml_SOURCES = \ + src/test/test-xml.c + +test_xml_LDADD = \ + libsystemd-shared.la + test_list_SOURCES = \ src/test/test-list.c |