Provide information regarding thred support.

svn path=/trunk/; revision=38058
This commit is contained in:
Michael Tüxen 2011-07-16 12:19:57 +00:00
parent 09af2bc6d2
commit 76d03b5bcb
1 changed files with 5 additions and 0 deletions

View File

@ -157,6 +157,11 @@ get_compiled_version_info(GString *str, void (*prepend_info)(GString *),
#else /* HAVE_LIBCAP */
g_string_append(str, "without POSIX capabilities");
#endif /* HAVE_LIBCAP */
#ifdef USE_THREADS
g_string_append_printf(str, ", with threads support");
#else
g_string_append_printf(str, ", without threads support");
#endif
/* Additional application-dependent information */
if (append_info)