diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-12-08 23:24:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-08 23:24:28 -0500 |
commit | 9258a1cae3985ee590f1c698451bd7909aa38d2b (patch) | |
tree | 8351f4b8fd8ff0895fe72a527e5718d00daa67a1 /Makefile.am | |
parent | 1aa68db1ae44e1c69a007eaf011099a00b367bdd (diff) | |
parent | 70fc4f57902290c48bec9acb2393ded84c09d4ca (diff) |
Merge pull request #4686 from poettering/machine-id-app-specific
Add new "khash" API and add new sd_id128_get_machine_app_specific() function
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 124e1867cd..99adfe4480 100644 --- a/Makefile.am +++ b/Makefile.am @@ -938,7 +938,9 @@ libbasic_la_SOURCES = \ src/basic/alloc-util.h \ src/basic/alloc-util.c \ src/basic/format-util.h \ - src/basic/nss-util.h + src/basic/nss-util.h \ + src/basic/khash.h \ + src/basic/khash.c nodist_libbasic_la_SOURCES = \ src/basic/errno-from-name.h \ @@ -4046,6 +4048,16 @@ tests += \ test-id128 # ------------------------------------------------------------------------------ +test_hash_SOURCES = \ + src/test/test-hash.c + +test_hash_LDADD = \ + libsystemd-shared.la + +tests += \ + test-hash + +# ------------------------------------------------------------------------------ bin_PROGRAMS += \ systemd-socket-activate |