2008-12-03 00:54:08 +01:00
|
|
|
/*
|
2016-03-06 10:49:27 +01:00
|
|
|
* librb: a library used by charybdis and other things
|
2008-12-03 00:54:08 +01:00
|
|
|
* src/version.c
|
2016-03-24 01:10:44 +01:00
|
|
|
*
|
2008-12-03 00:54:08 +01:00
|
|
|
* Copyright (C) 1990 Chelsea Ashley Dyerman
|
|
|
|
* Copyright (C) 2008 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2016-07-01 05:04:00 +02:00
|
|
|
#include <rb/rb.h>
|
2008-12-03 00:54:08 +01:00
|
|
|
|
2016-07-01 05:04:00 +02:00
|
|
|
const char *rb_version = RB_VERSION;
|
|
|
|
const char *rb_datestr = RB_DATESTR;
|
|
|
|
const time_t rb_datecode = RB_DATECODE;
|
|
|
|
const char *rb_creation = RB_DATESTR;
|
|
|
|
const char *rb_serno = RB_DATESTR;
|
|
|
|
const char *rb_infotext[] =
|
2008-12-03 00:54:08 +01:00
|
|
|
{
|
2016-07-01 05:04:00 +02:00
|
|
|
"librb --",
|
2008-12-03 00:54:08 +01:00
|
|
|
"Based on the original code written by Jarkko Oikarinen",
|
|
|
|
"Copyright 1988, 1989, 1990, 1991 University of Oulu, Computing Center",
|
2016-03-24 01:10:44 +01:00
|
|
|
"Copyright (c) 1996-2001 Hybrid Development Team",
|
2008-12-03 00:54:08 +01:00
|
|
|
"Copyright (c) 2002-2008 ircd-ratbox Development Team",
|
|
|
|
"",
|
|
|
|
"This program is free software; you can redistribute it and/or",
|
|
|
|
"modify it under the terms of the GNU General Public License as",
|
|
|
|
"published by the Free Software Foundation; either version 2, or",
|
|
|
|
"(at your option) any later version.",
|
|
|
|
"",
|
2016-07-01 05:04:00 +02:00
|
|
|
"librb was based on ircd-ratbox's libratbox. This contains various utility",
|
|
|
|
"functions. See the CREDITS in Charybdis for more information.",
|
2008-12-03 00:54:08 +01:00
|
|
|
"",
|
|
|
|
0,
|
|
|
|
};
|