mirror of
https://github.com/matrix-construct/construct
synced 2024-10-31 02:48:58 +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.
86 lines
2.1 KiB
C
86 lines
2.1 KiB
C
/*
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
* stdinc.h: Pull in all of the necessary system headers
|
|
*
|
|
* Copyright (C) 2002 Aaron Sethman <androsyn@ratbox.org>
|
|
*
|
|
* 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 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA
|
|
*
|
|
*/
|
|
|
|
#if defined(PIC) && defined(PCH)
|
|
#include <rb/rb.pic.h>
|
|
#else
|
|
#include <rb/rb.h>
|
|
#endif
|
|
|
|
#include "util.h"
|
|
#include "defaults.h"
|
|
#include "exception.h"
|
|
#include "fs.h"
|
|
#include "listener.h"
|
|
#include "s_assert.h"
|
|
|
|
#include "authproc.h"
|
|
#include "bandbi.h"
|
|
#include "cache.h"
|
|
#include "capability.h"
|
|
#include "certfp.h"
|
|
#include "channel.h"
|
|
#include "chmode.h"
|
|
#include "class.h"
|
|
#include "client.h"
|
|
#include "dns.h"
|
|
#include "hash.h"
|
|
#include "hook.h"
|
|
#include "hostmask.h"
|
|
#include "ircd_getopt.h"
|
|
#include "ircd_linker.h"
|
|
#include "ircd_signal.h"
|
|
#include "logger.h"
|
|
#include "match.h"
|
|
#include "messages.h"
|
|
#include "m_info.h"
|
|
#include "modules.h"
|
|
#include "monitor.h"
|
|
#include "msgbuf.h"
|
|
#include "msg.h"
|
|
#include "newconf.h"
|
|
#include "numeric.h"
|
|
#include "operhash.h"
|
|
#include "packet.h"
|
|
#include "parse.h"
|
|
#include "patchlevel.h"
|
|
#include "privilege.h"
|
|
#include "ratelimit.h"
|
|
#include "reject.h"
|
|
#include "restart.h"
|
|
#include "scache.h"
|
|
#include "s_conf.h"
|
|
#include "send.h"
|
|
#include "s_newconf.h"
|
|
#include "snomask.h"
|
|
#include "s_serv.h"
|
|
#include "sslproc.h"
|
|
#include "s_stats.h"
|
|
#include "substitution.h"
|
|
#include "supported.h"
|
|
#include "s_user.h"
|
|
#include "tgchange.h"
|
|
#include "whowas.h"
|
|
#include "wsproc.h"
|
|
|
|
#include "inline/stringops.h"
|