From 6fd61c4c7f3a6af098edfb9126e39f156e83ddf0 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 7 Nov 2016 16:10:17 -0500 Subject: [PATCH] Version number to 903 for distribution --- citadel/citadel.h | 4 ++-- citadel/configure.ac | 2 +- libcitadel/configure.in | 4 ++-- libcitadel/lib/libcitadel.h | 2 +- webcit/configure.ac | 2 +- webcit/webcit.h | 6 +++--- webcit/webserver.c | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/citadel/citadel.h b/citadel/citadel.h index 6a7312eb8..19c159ca2 100644 --- a/citadel/citadel.h +++ b/citadel/citadel.h @@ -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 */ diff --git a/citadel/configure.ac b/citadel/configure.ac index f6b7515f5..39015cb2e 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -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) diff --git a/libcitadel/configure.in b/libcitadel/configure.in index fe0c76f4f..2be9c363d 100755 --- a/libcitadel/configure.in +++ b/libcitadel/configure.in @@ -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) diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index c0689720a..eb0247001 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -28,7 +28,7 @@ #include #include -#define LIBCITADEL_VERSION_NUMBER 902 +#define LIBCITADEL_VERSION_NUMBER 903 /* * Here's a bunch of stupid magic to make the MIME parser portable. diff --git a/webcit/configure.ac b/webcit/configure.ac index ac631f331..bb2122f67 100644 --- a/webcit/configure.ac +++ b/webcit/configure.ac @@ -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) diff --git a/webcit/webcit.h b/webcit/webcit.h index 4d3c12333..4206f1130 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -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 */ diff --git a/webcit/webserver.c b/webcit/webserver.c index 9d838ef0c..0ea5e3fe8 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -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."); -- 2.30.2