mirror of
https://github.com/matrix-construct/construct
synced 2024-11-18 07:50:57 +01:00
61b517ca3c
* To benefit from the precompiled-header (PCH) it MUST provide "the first C token." Advantages: Never worry about the include stack again. Remember, this means one less thing for random module developers, community people learning C++, and new developers to deal with. It should reduce the learning curve and barrier for participation. Disadvantages: Makes overall compilation a bit slower, especially without any additional work to improve it again. There are several opportunities, places where the PCH is probably being ignored, etc that can be addressed.
51 lines
1.8 KiB
C++
51 lines
1.8 KiB
C++
/*
|
|
* librb: a library used by charybdis and other things
|
|
* src/version.c
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
namespace ircd {
|
|
|
|
const char *ircd_version = RB_VERSION;
|
|
const char *ircd_datestr = RB_DATESTR;
|
|
const time_t ircd_datecode = RB_DATECODE;
|
|
|
|
const char *creation = RB_DATESTR;
|
|
const char *serno = RB_DATESTR;
|
|
const time_t datecode = RB_DATECODE;
|
|
|
|
/* XXX: integrate CREDITS text again somehow */
|
|
const char *infotext[] =
|
|
{
|
|
"charybdis",
|
|
"Based on the original code written by Jarkko Oikarinen",
|
|
"Copyright (c) 1988-1991 University of Oulu, Computing Center",
|
|
"Copyright (c) 1996-2001 Hybrid Development Team",
|
|
"Copyright (c) 2002-2009 ircd-ratbox Development Team",
|
|
"Copyright (c) 2005-2016 charybdis 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.",
|
|
"",
|
|
NULL,
|
|
};
|
|
|
|
}
|