Add libmicrohttpd version to --version output.
This commit is contained in:
parent
8b7a737ceb
commit
49b45ddd18
1 changed files with 9 additions and 0 deletions
|
@ -33,6 +33,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
#ifndef XMRIG_NO_HTTPD
|
||||
# include <microhttpd.h>
|
||||
#endif
|
||||
|
||||
|
||||
#include "Cpu.h"
|
||||
#include "donate.h"
|
||||
#include "net/Url.h"
|
||||
|
@ -665,6 +670,10 @@ void Options::showVersion()
|
|||
"\n");
|
||||
|
||||
printf("\nlibuv/%s\n", uv_version_string());
|
||||
|
||||
# ifndef XMRIG_NO_HTTPD
|
||||
printf("libmicrohttpd/%s\n", MHD_get_version());
|
||||
# endif
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue