]> granicus.if.org Git - neomutt/commitdiff
restore missing version info
authorRichard Russon <rich@flatcap.org>
Wed, 24 Aug 2016 12:14:10 +0000 (13:14 +0100)
committerRichard Russon <rich@flatcap.org>
Wed, 24 Aug 2016 12:14:10 +0000 (13:14 +0100)
version.c

index b57b144940bd9f1f0dcbf0a897f5b126cdc95dd7..41299a35c2c27507ea1344f2b76c8a5caf3dd81b 100644 (file)
--- a/version.c
+++ b/version.c
@@ -84,10 +84,10 @@ static const char *Obtaining = N_(
 );
 
 static const char *ReachingUs = N_(
-       "To learn more about NeoMutt, visit: http://www.neomutt.org/\n"
-       "If you find a bug in NeoMutt, please raise an issue at:\n"
-       "    https://github.com/neomutt/neomutt/issues\n"
-       "or send an email at: <neomutt-devel@neomutt.org>\n"
+  "To learn more about NeoMutt, visit: http://www.neomutt.org/\n"
+  "If you find a bug in NeoMutt, please raise an issue at:\n"
+  "    https://github.com/neomutt/neomutt/issues\n"
+  "or send an email at: <neomutt-devel@neomutt.org>\n"
 );
 
 static const char *Notice = N_(
@@ -235,6 +235,11 @@ static struct compile_options comp_opts[] =
 #else
   { "ICONV_NONTRANS", 0 },
 #endif
+#ifdef USE_COMPRESSED
+  { "USE_COMPRESSED", 1 },
+#else
+  { "USE_COMPRESSED", 0 },
+#endif
 #ifdef USE_DOTLOCK
   { "USE_DOTLOCK", 1 },
 #else
@@ -275,6 +280,16 @@ static struct compile_options comp_opts[] =
 #else
   { "USE_IMAP", 0 },
 #endif
+#ifdef USE_NOTMUCH
+  { "USE_NOTMUCH", 1 },
+#else
+  { "USE_NOTMUCH", 0 },
+#endif
+#ifdef USE_NNTP
+  { "USE_NNTP", 1 },
+#else
+  { "USE_NNTP", 0 },
+#endif
 #ifdef USE_POP
   { "USE_POP", 1 },
 #else
@@ -290,6 +305,11 @@ static struct compile_options comp_opts[] =
 #else
   { "USE_SETGID", 0 },
 #endif
+#ifdef USE_SIDEBAR
+  { "USE_SIDEBAR", 1 },
+#else
+  { "USE_SIDEBAR", 0 },
+#endif
 #ifdef USE_SMTP
   { "USE_SMTP", 1 },
 #else