]> jfr.im git - solanum.git/blame - README.FIRST
Correct 325 (RPL_CHANNELMLOCKIS) numeric.
[solanum.git] / README.FIRST
CommitLineData
212380e3
AC
1If you don't read this first, we won't help you.
2:-)
3
4******************************* IMPORTANT *************************************
5
6 *********** Note for those who dont bother reading docs *****************
7 * - Reading INSTALL is now a must, as the old DPATH is now specified *
8 * when configure is run. *
9 * You now need to ./configure --prefix="/path/to/install/it" *
212380e3
AC
10 * will be installed with your ircd! *
11 *************************************************************************
12
13 ALSO, IF YOU ARE UPGRADING YOUR CURRENT SOURCE TREE, AND YOU TRY TO BUILD
14 IN IT WITHOUT PERFORMING AT LEAST 'make clean', THINGS _WILL_ BREAK. IT IS
15 RECOMMENDED THAT YOU RUN 'make distclean' AND THEN RERUN './configure'!
16
17******************************* REQUIREMENTS **********************************
18
fbdcbb74
VY
19New Features - A short introduction:
20- charybdis-3.x now has several major changes over previous version that you
21 will notice right away.
22 o SSL Client support.
23 o Connection Throttling.
24
25- Please see NEWS for more detailed changes.
26
27
212380e3
AC
28Necessary Requirements:
29
30- A supported platform (look below)
31
32- A working dynamic load library, unless
33 compiling as static, without module
34 support.
35
36- A working lex. Solaris /usr/ccs/bin/lex
37 appears to be broken, on this system flex
38 should be used.
39
40
41Feature Specific Requirements:
42
fbdcbb74 43- For SSL Clients, SSL Challenge controlled OPER feature, and encrypted server links,
212380e3
AC
44 a working OpenSSL library
45
fbdcbb74 46- For encrypted oper and (optional) server passwords, a working DES, MD5, or SHA library.
212380e3
AC
47
48*******************************************************************************
49
fbdcbb74 50- To report bugs in charybdis, visit us at irc.atheme.org #charybdis
212380e3 51
212380e3 52- See the INSTALL document for info on configuring and compiling
fbdcbb74 53 charybdis.
212380e3
AC
54
55- Please read doc/index.txt to get an overview of the current documentation.
56
212380e3
AC
57- The files, /etc/services, /etc/protocols, and /etc/resolv.conf, MUST be
58 readable by the user running the server in order for ircd to start.
59 Errors from adns causing the ircd to refuse to start up are often related
60 to permission problems on these files.
61
212380e3
AC
62- FREEBSD USERS: if you are compiling with ipv6 you may experience
63 problems with ipv4 due to the way the socket code is written. To
64 fix this you must: "sysctl net.inet6.ip6.v6only=0"
65
66- SOLARIS USERS: this code appears to tickle a bug in older gcc and
67 egcs ONLY on 64-bit Solaris7. gcc-2.95 and SunPro C on 64bit should
68 work fine, and any gcc or SunPro compiled on 32bit.
69
70- DARWIN AND MACOS X USERS: You must be using at least the December 2001
fbdcbb74 71 Development Tools from Apple to build charybdis with shared modules.
212380e3
AC
72 Before then you MUST disable shared modules, as we do not have the proper
73 flags for cc(1) prior to that point to produce shared modules.
74
fbdcbb74
VY
75- SUPPORTED PLATFORMS: this code should compile without any warnings on:
76 FreeBSD 6.x/7.x,
77 Gentoo & Gentoo Hardened ~x86/~amd64/~fbsd
78 Fedora 8/9 / CentOS 4/5 / Redhat Enterprise 5
79 Debian Etch,
80 OpenSuSE 10/11,
81 OpenSolaris 2008.x?
82 Solaris 10 sparc.
83
212380e3
AC
84 Please let us know if you find otherwise.
85 It probably does not compile on AIX, IRIX or libc5 Linux.
86
87- TESTED PLATFORMS: The code has been tested on the following platforms, and
88 is known to run properly.
fbdcbb74
VY
89 FreeBSD 6.x/7.x
90 Linux glibc-2.6, glibc-2.7
212380e3
AC
91 Solaris 2.6/7/8
92 OpenBSD 2.8
93 NetBSD 1.4
a967a157 94 OpenVMS/Alpha 7.2 (static modules, no ssld)
212380e3 95
fbdcbb74 96- Please read NEWS for information about what is in this release
212380e3
AC
97
98- Other files recommended for reading: BUGS, INSTALL
99
100--------------------------------------------------------------------------------
fbdcbb74 101$Id$