diff options
author | Werner Koch <wk@gnupg.org> | 2016-05-24 15:43:16 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2016-05-24 15:43:16 +0200 |
commit | 2421f7f7ed74ed20372efd63a2efd58d3b55005c (patch) | |
tree | 8c5ae41ee35e2629d51b6313be7f4b6e2ea1ca40 /common/Makefile.am | |
parent | common,w32: Silence an unused arg warning message. (diff) | |
download | gnupg2-2421f7f7ed74ed20372efd63a2efd58d3b55005c.tar.xz gnupg2-2421f7f7ed74ed20372efd63a2efd58d3b55005c.zip |
common: Add simple dynamic array function.
* common/ccparray.c: New.
* common/ccparray.h: New.
* common/t-ccparray.c: New.
* common/Makefile.am (common_sources): Add files.
(module_tests): Add test file.
(t_ccparray_LDADD): New.
Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'common/Makefile.am')
-rw-r--r-- | common/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 4a35f64be..884c966a3 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -72,6 +72,7 @@ common_sources = \ xasprintf.c \ xreadline.c \ membuf.c membuf.h \ + ccparray.c ccparray.h \ iobuf.c iobuf.h \ ttyio.c ttyio.h \ asshelp.c asshelp2.c asshelp.h \ @@ -156,7 +157,7 @@ module_tests = t-stringhelp t-timestuff \ t-convert t-percent t-gettime t-sysutils t-sexputil \ t-session-env t-openpgp-oid t-ssh-utils \ t-mapstrings t-zb32 t-mbox-util t-iobuf t-strlist \ - t-private-keys + t-private-keys t-ccparray if !HAVE_W32CE_SYSTEM module_tests += t-exechelp endif @@ -206,6 +207,7 @@ t_mbox_util_LDADD = $(t_common_ldadd) t_iobuf_LDADD = $(t_common_ldadd) t_strlist_LDADD = $(t_common_ldadd) t_private_keys_LDADD = $(t_common_ldadd) +t_ccparray_LDADD = $(t_common_ldadd) # System specific test if HAVE_W32_SYSTEM |