1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 21:16:39 +02:00

BUILD : 1.7.6 (496) BUGS : N/A NOTES : Dreamforge now compiles properly again :)

git-svn-id: svn://svn.anope.org/anope/trunk@496 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@350 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-12-21 11:08:56 +00:00
parent fbdf252876
commit 4fa5060dcc
5 changed files with 21 additions and 1 deletions
+1
View File
@@ -13,6 +13,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00]
11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00]
11/18 A NSAddAccessOnReg to control access list on registration. [ #00]
12/21 F Dreamforge compile [ #00]
12/21 F Moved global about del of non-existant session inside debug() if [ #00]
12/19 F Fixed LogUser messages where the nickip is 0. [#253]
12/19 F Segfault if USERDB enabled and tables don't exist. [#255]
Vendored
+8
View File
@@ -8521,6 +8521,14 @@ _ACEOF
IRCDFILE=" bahamut.c "
elif test "$withval" = "IRC_DREAMFORGE"; then
cat >>confdefs.h <<\_ACEOF
#define IRC_DREAMFORGE 1
_ACEOF
IRCDFILE=" dreamforge.c "
elif test "$withval" = "IRC_UNREAL31"; then
cat >>confdefs.h <<\_ACEOF
+4
View File
@@ -197,6 +197,10 @@ AC_ARG_WITH(ircd, [ --with-ircd=ircd Specify the first ircd type], [
AC_DEFINE(IRC_BAHAMUT,1,"First IRCD type")
IRCDFILE=" bahamut.c "
AC_SUBST(IRCDFILE)
elif test "$withval" = "IRC_DREAMFORGE"; then
AC_DEFINE(IRC_DREAMFORGE,1,"First IRCD type")
IRCDFILE=" dreamforge.c "
AC_SUBST(IRCDFILE)
elif test "$withval" = "IRC_UNREAL31"; then
AC_DEFINE(IRC_UNREAL31,1,"First IRCD type")
IRCDFILE=" unreal31.c "
+3
View File
@@ -90,6 +90,9 @@
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* "First IRCD type" */
#undef IRC_DREAMFORGE
/* "First IRCD type" */
#undef IRC_BAHAMUT
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
VERSION_BUILD="495"
VERSION_BUILD="496"
# $Log$
#
# BUILD : 1.7.6 (496)
# BUGS : N/A
# NOTES : Dreamforge now compiles properly again :)
#
# BUILD : 1.7.6 (495)
# BUGS : N/A
# NOTES : Moved global regarding the deletion of non-existing session toinside the if(debug) as anope will call that function when users ping out etc