mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-25 17:26:38 +02:00
88ae0eb161
- DOMAINNAME is removed from ./Config reported by satmd (#0003063). - THROTTLING and FAST_BADWORD_REPLACE cannot be configured in config.h reported by raymondvrolijk (#0002937). - /sqline supports sqlining for channels. #*ble* will forbid channels and *ble* will forbid only nicks (not channels). Forbid message showed by numeric ERR_FORBIDDENCHANNEL (448) reported by aragon and Jase (#0000935, #0003012). - conf_deny NOTICE message is replace by ERR_FORBIDDENCHANNEL.
59 lines
1.6 KiB
C
59 lines
1.6 KiB
C
/************************************************************************
|
|
* IRC - Internet Relay Chat, include/win32/setup.h
|
|
* Copyright (C) 1999 Carsten Munk
|
|
*
|
|
* 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 1, 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.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __setup_include__
|
|
#define __setup_include__
|
|
#undef PARAMH
|
|
#undef UNISTDH
|
|
#define STRINGH
|
|
#undef STRINGSH
|
|
#define STDLIBH
|
|
#undef STDDEFH
|
|
#undef SYSSYSLOGH
|
|
#define NOINDEX
|
|
#define NOBCOPY
|
|
#define NEED_STRTOKEN
|
|
#undef NEED_STRTOK
|
|
#undef NEED_INET_ADDR
|
|
#undef NEED_INET_NTOA
|
|
#define NEED_INET_NETOF
|
|
#define GETTIMEOFDAY
|
|
#undef LRAND48
|
|
#define MALLOCH <malloc.h>
|
|
#undef NBLOCK_POSIX
|
|
#undef POSIX_SIGNALS
|
|
#undef TIMES_2
|
|
#undef GETRUSAGE_2
|
|
#define HAVE_ALLOCA
|
|
/* vc 2005 */
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
|
# define HAVE_VSNPRINTF
|
|
# define HAVE_SNPRINTF
|
|
# define snprintf _snprintf
|
|
#endif
|
|
#define SPATH "."
|
|
#define DPATH "."
|
|
#define NO_U_TYPES
|
|
#define NEED_U_INT32_T
|
|
#define PREFIX_AQ
|
|
#define LIST_SHOW_MODES
|
|
#endif
|