diff options
-rw-r--r-- | Changes | 1 | ||||
-rwxr-xr-x | configure | 8 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | include/sysconf.h.in | 3 | ||||
-rw-r--r-- | version.log | 6 |
5 files changed, 21 insertions, 1 deletions
@@ -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] @@ -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 @@ -91,6 +91,9 @@ #undef HAVE_UNISTD_H /* "First IRCD type" */ +#undef IRC_DREAMFORGE + +/* "First IRCD type" */ #undef IRC_BAHAMUT /* "First IRCD type" */ 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 |