1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Add OMEMO status in build information

This commit is contained in:
Paul Fariello 2019-03-11 07:51:21 +01:40
parent 97c661271b
commit 249701fe7a

View File

@ -138,6 +138,12 @@ main(int argc, char **argv)
g_print("PGP support: Disabled\n"); g_print("PGP support: Disabled\n");
#endif #endif
#ifdef HAVE_OMEMO
g_print("OMEMO support: Enabled\n");
#else
g_print("OMEMO support: Disabled\n");
#endif
#ifdef HAVE_C #ifdef HAVE_C
g_print("C plugins: Enabled\n"); g_print("C plugins: Enabled\n");
#else #else