diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | include/services.h | 4 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 2 deletions
@@ -4,6 +4,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 07/17 A Switched to autoconf for configure script. [ #00] 07/05 A Warning when LocalAddress conflicts with RemoteServer. [#118] 06/18 A Added proper Bahamut1.8 support. [ #55] +08/11 F Fixed support for Ultimate, Rage and Viagra. [#113] 08/07 F configure will be ok if you dont have mysqlclient lib file. [ #00] 08/10 F Fixed previous BotServ buffer fix. [#131] 08/10 F Updated documentation to reflect the changed build process. [ #00] diff --git a/include/services.h b/include/services.h index e5fa318c6..dead44dc3 100644 --- a/include/services.h +++ b/include/services.h @@ -180,8 +180,9 @@ typedef struct channel_ Channel; # define BOTSERV_BOTS_MODE "+qS" #endif -#if defined(IRC_BAHAMUT) && !defined(IRC_ULTIMATE3) && !defined(IRC_VIAGRA) && !defined(IRC_RAGE2) +#if defined(IRC_BAHAMUT) # define HAS_NICKIP + #ifdef !defined(IRC_ULTIMATE3) && !defined(IRC_VIAGRA) && !defined(IRC_RAGE2) # define HAS_EXCEPT # define HAS_SVSHOLD # define NICKSERV_MODE "+o" @@ -201,6 +202,7 @@ typedef struct channel_ Channel; # define DEVNULL_ALIAS_MODE "+i" # define GLOBAL_ALIAS_MODE "+io" # define BOTSERV_BOTS_MODE "+" + #endif #endif #ifdef IRC_RAGE2 diff --git a/version.log b/version.log index ace126179..7d37604ed 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="5" -VERSION_BUILD="319" +VERSION_BUILD="320" # $Log$ # +# BUILD : 1.7.5 (320) +# BUGS : +# NOTES : Fixed support for Ultimate, Rage and Viagra. +# # BUILD : 1.7.5 (319) # BUGS : # NOTES : Hopefully fixed the Changes file now |