Removed a lot of legacy cruft out of the setup utility. Eventually I want to remove...
[citadel.git] / citadel / citadel.h
index aa108c30cf5bdf41bf0928c2d75fc432e6b93517..881faac63230676a2046a9c6e562349a6be81d9c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Main Citadel header file
  *
- * Copyright (c) 1987-2018 by the citadel.org team
+ * Copyright (c) 1987-2019 by the citadel.org team
  *
  * This program is open source software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 3.
@@ -35,13 +35,11 @@ extern "C" {
  */
 #define CITADEL        PACKAGE_STRING
 
-#define REV_LEVEL      921             // This version
+#define REV_LEVEL      927             // This version
 #define REV_MIN                591             // Oldest compatible database
 #define EXPORT_REV_MIN 760             // Oldest compatible export files
-#define LIBCITADEL_MIN 920             // Minimum required version of libcitadel
-
-#define SERVER_TYPE 0                  // zero for stock Citadel; other developers please
-                                       // obtain SERVER_TYPE codes for your implementations
+#define LIBCITADEL_MIN 922             // Minimum required version of libcitadel
+#define SERVER_TYPE    0               // zero for stock Citadel; other developers please obtain SERVER_TYPE codes for your implementations
 
 #ifdef LIBCITADEL_VERSION_NUMBER
 #if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
@@ -196,4 +194,9 @@ struct floor {
 }
 #endif
 
+#if __GNUC__ >= 8
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wformat-truncation"
+#endif
+
 #endif /* CITADEL_H */