thanks: add Troy D. Hanson to credits about uthash

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2017-11-13 11:45:56 +00:00
parent 8fba5c5e6b
commit eabaa8adc2
No known key found for this signature in database
GPG key ID: A9553245FDE9B739
3 changed files with 12 additions and 3 deletions

1
THANKS
View file

@ -22,6 +22,7 @@ Adam Ciarcinski
Rezso Gajdóczy Rezso Gajdóczy
Robert Viou Robert Viou
Enno Gröper Enno Gröper
Troy D. Hanson
Ryan Malek Ryan Malek
Cheer Xiao Cheer Xiao
Gilles Bouthenot Gilles Bouthenot

View file

@ -289,14 +289,17 @@ ISC dhcpd lease file.
.SH AUTHORS .SH AUTHORS
Original design by Sami Kerola. Original design by Sami Kerola.
.br .br
uthash by Troy D. Hanson.
.br
XML support by Dominic Germain, Sogetel inc. XML support by Dominic Germain, Sogetel inc.
.br .br
IPv6 support by Cheer Xiao. IPv6 support by Cheer Xiao.
.br .br
Mustache templating support by José Bollo. Mustache templating support by José Bollo.
.SH LICENSE .SH LICENSE
The dhcpd-pools uses FreeBSD License, the mustache uses Apache License, and The dhcpd-pools uses FreeBSD License, uthash uses BSD license, the mustache
the gnulib modules are Mostly, but not entirely, GPL. uses Apache License, and the gnulib modules are mostly, but not entirely,
GPL.
.SH "REPORTING BUGS" .SH "REPORTING BUGS"
Report bugs to Report bugs to
.MT @PACKAGE_BUGREPORT@ .MT @PACKAGE_BUGREPORT@

View file

@ -531,14 +531,19 @@ void clean_up(struct conf_t *state)
/*! \brief A version printing. */ /*! \brief A version printing. */
void __attribute__ ((__noreturn__)) print_version(void) void __attribute__ ((__noreturn__)) print_version(void)
{ {
#define stringify(s) #s
#define stringify_value(s) stringify(s)
fprintf(stdout, "%s\n" fprintf(stdout, "%s\n"
"Original design and maintainer Sami Kerola.\n" "Original design and maintainer Sami Kerola.\n"
"uthash %s by Troy D. Hanson.\n"
"XML support by Dominic Germain, Sogetel inc.\n" "XML support by Dominic Germain, Sogetel inc.\n"
"IPv6 support by Cheer Xiao.\n" "IPv6 support by Cheer Xiao.\n"
"Mustach templating support by Jose Bollo.\n" "Mustach templating support by Jose Bollo.\n"
" The dhcpd-pools is FreeBSD Licensed,\n" " The dhcpd-pools is FreeBSD Licensed,\n"
" uthash uses BSD license,\n"
" gnulib parts are mostly GPL,\n" " gnulib parts are mostly GPL,\n"
" and mustache uses Apache License.\n", PACKAGE_STRING); " and mustache uses Apache License.\n", PACKAGE_STRING,
stringify_value(UTHASH_VERSION));
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
} }