]> code.citadel.org Git - citadel.git/blobdiff - citadel/citadel.h
- port to Cygwin (DLL support, etc.)
[citadel.git] / citadel / citadel.h
index 3a8580011585defed8a411e4559ca2ff6016fae1..a613b43baf1d394eecb29f44f3d6dc0e5748ae97 100644 (file)
@@ -6,11 +6,15 @@
  */
 
 /* system customizations are in sysconfig.h */
+
+#ifndef CITADEL_H
+#define CITADEL_H
+
 #include "sysdep.h"
 #include "sysconfig.h"
 #include "ipcdef.h"
 
-#define CITADEL        "Citadel/UX 5.73"       /* Text description of this software */
+#define CITADEL        "Citadel/UX 5.80"       /* Text description of this software */
 
 /*
  * REV_LEVEL is the current version number (multiplied by 100 to avoid having
@@ -19,7 +23,7 @@
  * are older than REV_MIN, none of the programs will work until the setup
  * program is run again to bring things up to date.
  */
-#define REV_LEVEL      573             /* This version */
+#define REV_LEVEL      580             /* This version */
 #define REV_MIN                570             /* Oldest compatible version */
 
 #define SERVER_TYPE 0  /* zero for stock Citadel/UX; other developers please
@@ -259,5 +263,12 @@ struct floor {
  */
 #define SPOOLMIME      "application/x-citadel-delivery-list"
 #define        INTERNETCFG     "application/x-citadel-internet-config"
+#define IGNETCFG       "application/x-citadel-ignet-config"
 
 #define TRACE  lprintf(9, "Checkpoint: %s, %d\n", __FILE__, __LINE__)
+
+#ifndef LONG_MAX
+#define LONG_MAX 2147483647L
+#endif
+
+#endif /* CITADEL_H */