Version number to 903 for distribution
authorArt Cancro <ajc@citadel.org>
Mon, 7 Nov 2016 21:10:17 +0000 (16:10 -0500)
committerArt Cancro <ajc@citadel.org>
Mon, 7 Nov 2016 21:10:17 +0000 (16:10 -0500)
citadel/citadel.h
citadel/configure.ac
libcitadel/configure.in
libcitadel/lib/libcitadel.h
webcit/configure.ac
webcit/webcit.h
webcit/webserver.c

index 6a7312eb86acbed31283c9990e64969f2fbe16fb..19c159ca2e42f6463c3636622442d865fc439939 100644 (file)
@@ -45,10 +45,10 @@ extern "C" {
  * usually more strict because you're not really supposed to dump/load and
  * upgrade at the same time.
  */
-#define REV_LEVEL      902             /* This version */
+#define REV_LEVEL      903             /* This version */
 #define REV_MIN                591             /* Oldest compatible database */
 #define EXPORT_REV_MIN 760             /* Oldest compatible export files */
-#define LIBCITADEL_MIN 901             /* Minimum required version of libcitadel */
+#define LIBCITADEL_MIN 903             /* Minimum required version of libcitadel */
 
 #define SERVER_TYPE 0                  /* zero for stock Citadel; other developers please
                                           obtain SERVER_TYPE codes for your implementations */
index f6b7515f572e4df2ce876d46c169ed6d847d583f..39015cb2ef58cdaf5d733b976881f490dde3d66d 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.52)
-AC_INIT([Citadel], [902], [http://www.citadel.org/])
+AC_INIT([Citadel], [903], [http://www.citadel.org/])
 AC_REVISION([$Revision: 5108 $])
 AC_CONFIG_SRCDIR([citserver.c])
 AC_CONFIG_HEADER(sysdep.h)
index fe0c76f4f5d190bc30ecf20a0a44554656e45d66..2be9c363d79af1acb024c64fb369637f6f6881a2 100755 (executable)
@@ -5,7 +5,7 @@ dnl
 dnl Ensure that libcitadel is configured with autoconf 2.52 or newer
 AC_PREREQ(2.52)
 
-AC_INIT(libcitadel, 902, http://uncensored.citadel.org)
+AC_INIT(libcitadel, 903, http://uncensored.citadel.org)
 
 AC_CONFIG_SRCDIR(Makefile.in)
 AC_CONFIG_AUX_DIR(conftools)
@@ -20,7 +20,7 @@ dnl Set LIBAGE to 0.
 dnl
 
 LIBCURRENT=4
-LIBREVISION=902
+LIBREVISION=903
 LIBAGE=0
 
 sinclude(conftools/libtool.m4)
index c0689720a25f42af1ffb6afe4e9c72896db376bc..eb02470013c866b80eeb5a9d57bf1cbfdb71799a 100644 (file)
@@ -28,7 +28,7 @@
 #include <sys/types.h>
 #include <netinet/in.h>
 
-#define LIBCITADEL_VERSION_NUMBER      902
+#define LIBCITADEL_VERSION_NUMBER      903
 
 /*
  * Here's a bunch of stupid magic to make the MIME parser portable.
index ac631f331394e0eb3baa796cb49af93409aedec4..bb2122f67f1b2f6d857d82b40c8bc934e41c7f53 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl $Id$
-AC_INIT([WebCit], [902], [http://www.citadel.org/])
+AC_INIT([WebCit], [903], [http://www.citadel.org/])
 
 
 AC_SUBST(PROG_SUBDIRS)
index 4d3c123335efca40c440b3ed900aca66e5353a9e..4206f113051a81e5b089ba7cdd82170aaaa7e969 100644 (file)
@@ -127,9 +127,9 @@ extern char *ssl_cipher_list;
 #define PORT_NUM               2000            /* port number to listen on */
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
-#define CLIENT_VERSION         902             /* This version of WebCit */
-#define MINIMUM_CIT_VERSION    902             /* Minimum required version of Citadel server */
-#define        LIBCITADEL_MIN          902             /* Minimum required version of libcitadel */
+#define CLIENT_VERSION         903             /* This version of WebCit */
+#define MINIMUM_CIT_VERSION    903             /* Minimum required version of Citadel server */
+#define        LIBCITADEL_MIN          903             /* Minimum required version of libcitadel */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */
 #define DEFAULT_PORT           "504"
 #define TARGET                 "webcit01"      /* Window target for inline URL's */
index 9d838ef0c11d811d46c57403d60a9c75da2a2fe7..0ea5e3fe896b54e1902520e967e00836cfa505f3 100644 (file)
@@ -234,7 +234,7 @@ int main(int argc, char **argv)
 
        /* Tell 'em who's in da house */
        syslog(LOG_NOTICE, "%s", PACKAGE_STRING);
-       syslog(LOG_NOTICE, "Copyright (C) 1996-2015 by the citadel.org team");
+       syslog(LOG_NOTICE, "Copyright (C) 1996-2016 by the citadel.org team");
        syslog(LOG_NOTICE, " ");
        syslog(LOG_NOTICE, "This program is open source software: you can redistribute it and/or");
        syslog(LOG_NOTICE, "modify it under the terms of the GNU General Public License, version 3.");