From 4fa5060dccf69a60d592f54cf6a5c8f4ffd68062 Mon Sep 17 00:00:00 2001 From: "rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Tue, 21 Dec 2004 11:08:56 +0000 Subject: [PATCH] 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 --- Changes | 1 + configure | 8 ++++++++ configure.in | 4 ++++ include/sysconf.h.in | 3 +++ version.log | 6 +++++- 5 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index bd4e02700..ebbfc6fa8 100644 --- a/Changes +++ b/Changes @@ -13,6 +13,7 @@ Provided by Anope Dev. - 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] diff --git a/configure b/configure index f17acb8ae..a8b674cfe 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.in b/configure.in index 22cb44fc1..ffe7e5e64 100644 --- a/configure.in +++ b/configure.in @@ -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 " diff --git a/include/sysconf.h.in b/include/sysconf.h.in index 26479e507..340ef7ca4 100644 --- a/include/sysconf.h.in +++ b/include/sysconf.h.in @@ -90,6 +90,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H +/* "First IRCD type" */ +#undef IRC_DREAMFORGE + /* "First IRCD type" */ #undef IRC_BAHAMUT diff --git a/version.log b/version.log index 4e4050018..7e43ae71e 100644 --- a/version.log +++ b/version.log @@ -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